PA_Dial4DShowHideObject

4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next

version 2003


PA_Dial4DShowHideObject (dialog; objectName; visible)

ParameterTypeDescription
dialogPA_Dial4DDialog reference
objectNamechar*Name of the object to access
visiblechar1 = 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.


4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next