Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the Sys.UI.VisibilityMode value for the current Control object.
Note
To get or set property values for client API properties, you must call property accessor methods that are named with the get_ and set_ prefixes. For example, to get or set a value for a property such as cancel, you call the get_cancel or set_cancel methods.
var v = MyControl.get_visibilityMode();
v.set_visibilityMode(value)
Parameter |
Description |
---|---|
value |
A Sys.UI.VisibilityMode enumeration value. |
The current Sys.UI.VisibilityMode value associated with the Control object.
Exception type |
Condition |
---|---|
(Debug) An attempt was made to set a VisibilityMode value after the Control object's Sys.UI.Control.dispose method was invoked. |
The visibilityMode property determines how a control will behave when the visible property is set to false. Valid values are Sys.UI.VisibilityMode.hide and Sys.UI.VisibilityMode.collapse. The default is Sys.UI.VisibilityMode.hide. For more information, see Sys.UI.VisibilityMode Enumeration.