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

Cell.ColumnIndex Property

Gets the index of the column that contains the current cell.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

int ColumnIndex { get; }

Property Value

Type Description
Int32

A zero-based integer value that specifies the index of the column containing the current cell.

Remarks

Use the ColumnIndex and Cell.RowIndex properties to obtain indexes of the column and row at the intersection of which the current cell is located. To get column and row headings, use the Column.Heading and Row.Heading properties.

SpreadsheetControl_Row_Column_Indexes

To get the string that specifies a cell reference, call the Range.GetReferenceA1 or Range.GetReferenceR1C1 method for this cell.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ColumnIndex property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also