Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

NavBarItemLink.Visible Property

Gets or sets a value specifying whether the link is visible.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

public bool Visible { get; set; }

#Property Value

Type Description
Boolean

true if the link is visible; otherwise false.

#Remarks

The value returned by this property depends on the NavElement.Visible property of the corresponding item. The corresponding item is obtained via the NavBarItemLink.Item property.

If the item’s NavElement.Visible property is false, the Visible property also returns false. Thus, the link is invisible in such a case. If the item’s NavElement.Visible property value is true and true is assigned to the Visible property, the link becomes visible.

See Also