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

GridView.FixedLineWidth Property

Gets or sets the width of frozen panel separators.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

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

Property Value

Type Default Description
Int32 2

An integer value specifying the width of vertical lines that separate anchored columns and bands from others. The value is set in pixels.

Remarks

Grid Views allow you to anchor individual columns to the left or right View edge. Banded Grid Views allow you to anchor bands in the same manner. Anchored elements do not take part in horizontal scrolling. Visually, they are separated from other columns/bands by vertical lines whose width is specified by the FixedLineWidth property. Please refer to the Columns and Banded Grid Views topics for additional information.

See Also