PROPLIST.Hide

Previous  Next

 

status = PROPLIST.Hide()

 


 

Hides the PROPLIST Window but doesn't close or destroy the list.  This allows you to hide the window while still being able to retrieve property values and status.

 

Returns 1 = Window was visible, 0 = Window was hidden already.

 

Example:

 

' Hide the list

PROPLIST.Hide()

 

' Get values from list

PRINT "Floating Point = ";PROPLIST.GETVALUE( "Floating Point" ),

PRINT "Integer Value = ";PROPLIST.GETVALUE( "Integer Value" ),

PRINT "Select Color = ";PROPLIST.GETVALUE( "Select Color" ),