Skip to main content

BandedGridHitInfo.InBandPanel Property

Gets a value indicating whether the test point is within the band panel.

Namespace: DevExpress.XtraGrid.Views.BandedGrid.ViewInfo

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public virtual bool InBandPanel { get; }

Property Value

Type Description
Boolean

true if the test point is within the band panel; otherwise, false.

Remarks

The InBandPanel property is useful if you don’t need to know the actual element residing under the test point and you are only interested in whether the point is within the band panel. For instance, the property can be used if you need to provide a common context menu for the band panel regardless of which band header is right-clicked. If you need to obtain a particular band located under the test point, use the BandedGridHitInfo.Band property instead.

See Also