Sys.UI.Control visibilityMode Property
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)
|
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.
Note