Skip to main content
A newer version of this page is available. .

TreeListBand.ActualVisible Property

Specifies whether the band and all its parents are visible.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v19.1.dll

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