Skip to main content

GridColumnData.VisibleIndex Property

Gets the column’s position among visible columns.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public int VisibleIndex { get; }

Property Value

Type Description
Int32

An integer value that specifies the column’s visible index. -1 if the column is hidden.

Remarks

A column is visible if its BaseColumn.Visible property is set to true. The list of visible columns can be obtained using the GridViewBase.VisibleColumns property.

See Also