Skip to main content

ASPxClientLayoutItem.SetVisible(value) Method

Specifies the layout item’s visibility.

Declaration

SetVisible(
    value: boolean
): void

Parameters

Name Type Description
value boolean

true, if the layout item is visible; otherwise, false.

Remarks

Use the SetVisible method to dynamically define an item’s visible state on the client. The original item’s visibility can be defined by using the LayoutItemBase.ClientVisible property.

Note

If an item’s server LayoutItemBase.Visible property is set to false, this item is not rendered into the web page, so it can’t be manipulated on the client side.

See Also