|
Copyright ® (1999-2008) EDMGROUP Pty Ltd - EZY Prolog Reference |
[This is preliminary specification and subject to change.]
Group
Type
determ
Syntax
ezy_object_parent( WINDOW CTRLWIN, STRING PARENT, WINDOW PARENTWIN)
Flow patterns
(i,i,o)
Description:
Get parent by name of the current WINDOW.
EZY Prolog will perform cascade search for parent.
First WINDOW which has PARENT name will be returned as result of the call.
Sample:
ezy_object_parent(CTRLWIN,"TOP_FRAME",PARENTWIN),
ezy_object_address(PARENTWIN, PARENT_ADDRESS),
write("PARENT_ADDRESS=",PARENT_ADDRESS),