hParent = CwGetParent(hObject) hParent (handle) The parent of hObject. hObject (handle) The object to examine.
This function is useful for determining if an object is in a group.
/* Function to determine whether the given object is in a group or not. */ inGroup:procedure parse arg handle h=CwGetParent(handle) if CwGetHandleType(h) = "View" then r = 0 else r = 1 return r
Functions by NAME |
Index |
Functions by PURPOSE |