MANAGE_WIDGET
Brings the specified widget instance under the management of its parent.
This causes the specified widget instance's parent to become responsible
for determining the widget's space requirements. It also causes the
parent to determine the widget's visibility, unless the
MAPPED_WHEN_MANAGED setting has been turned off for the widget.
Syntax
MANAGE_WIDGET (widget [, widget...])
Parameters
widget The widget instance you want to manage.
Comments
MANAGE_WIDGET performs the same functions as XtManageWidget.
Example
The following statement manages the widget instance assigned to the
variable "sample_x_keypad":
MANAGE_WIDGET (sample_x_keypad);
Related Topics
CREATE_WIDGET GET_INFO(WIDGET_VARIABLE) REALIZE_WIDGET
SET(MAPPED_WHEN_MANAGED) UNMANAGE_WIDGET