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

TreeListBand.ActualVisible Property

Specifies whether the band and all its parents are visible.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

[Browsable(false)]
public bool ActualVisible { get; }

#Property Value

Type Description
Boolean

true if the current band is visible within the TreeList; otherwise, false.

#Remarks

A band’s visibility is specified by its TreeListBand.Visible property. This property’s value is propagated to all bands’ child bands and columns. So, there are situations when the band can be hidden regardless of its TreeListBand.Visible property. This occurs when one of the band’s parents is invisible.

The ActualVisible property specifies the band’s actual visibility. This property traverses the band’s parents and checks their TreeListBand.Visible property. If none of the parent bands is hidden, the ActualVisible property returns true.

See Also