PA_Dial4DShowHideObject


version 2003


PA_Dial4DShowHideObject (dialog; objectName; visible)

Parameter Type Description
dialog PA_Dial4D Dialog reference
objectName char* Name of the object to access
visible char 1 = Show object, 0 = Hide object

Description

The routine PA_Dial4DShowHideObject allows you to show or hide an object. This command accepts wild cards and will show or hide any object whose name is equal to objectName depending on the value of visible . If visible is 1, the object(s) will be shown, otherwise if it is 0, the object(s) will be hidden.

Example

Hide variables named "aButton1", "aButton2" and "aButton3" in one call.

   
   PA_Dial4DShowHideObject( dialog, "aButton@", 0 );

See Also

PA_Dial4DShowHideVariable .

Error Handling

None.