Skip to main content
Tab

TabBase.ClientVisible Property

Gets or sets a value that specifies the tab’s initial visibility state on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool ClientVisible { get; set; }

Property Value

Type Default Description
Boolean true

true to make a tab (tab page) initially displayed on the client; false to render the tab (tab page) into the control, but make it initially hidden on the client side.

Remarks

Use the ClientVisible property to define a tab’s initial visibility state. The tab’s visibility can then be dynamically changed on the client side using the ASPxClientTab.SetVisible method.

Note

If a tab’s server TabBase.Visible property is set to false, the tab is not rendered into the web page at all, so it can’t be manipulated on the client side.

See Also