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)

Parameters

Parameter

Description

value

A Sys.UI.VisibilityMode enumeration value.

Return Value

The current Sys.UI.VisibilityMode value associated with the Control object.

Exceptions

Exception type

Condition

Error.invalidOperation Function

(Debug) An attempt was made to set a VisibilityMode value after the Control object's Sys.UI.Control.dispose method was invoked.

Remarks

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.

See Also

Tasks

Creating Custom AJAX Client Controls

Reference

Sys.UI.Control Class

Other Resources

Language Reference