Skip to main content
Tab

RibbonContextTabCategory.Visible Property

Gets or sets a value specifying the visibility of the current context tab category.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean true

true if the category is visible; otherwise false.

Remarks

Use the Visible property to dynamically change the content of the ASPxRibbon toolbar. This property enables you to hide and display specific context tab categories when certain conditions are met.

Note

If a context tab category is hidden on the server by setting the Visible property to false, the category can’t then be displayed on the client by using the clientASPxClientRibbon.SetContextTabCategoryVisible method. If you want to drive an editor on the client side, use its RibbonContextTabCategory.ClientVisible property, rather than the Visible property.

See Also