Skip to main content

GridView.IndicatorWidth Property

Gets or sets the width of the row indicator panel.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(-1)]
[DXCategory("Appearance")]
[XtraSerializableProperty(XtraSerializationFlags.AutoScaleX)]
public virtual int IndicatorWidth { get; set; }

Property Value

Type Default Description
Int32 -1

An integer value specifying the width of the row indicator panel in pixels.

Remarks

Assigning values less than 4 automatically sets the property to -1.

You can change the IndicatorWidth property to increase the indicator width. For instance, you can paint custom information within the increased indicator area by handling the GridView.CustomDrawRowIndicator event.

See Also