officefileapi-devexpress-dot-spreadsheet-dot-rowscolumnschangingeventargsbase-11b2d6aa.md
Gets the index of the first row/column after which rows/columns will be inserted or removed.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public int StartIndex { get; }
Public ReadOnly Property StartIndex As Integer
| Type | Description |
|---|---|
| Int32 |
A zero-based integer that is the index of the row/column from which insertion or removal should start.
|
Handle the SpreadsheetControl.RowsInserting, SpreadsheetControl.ColumnsInserting, SpreadsheetControl.RowsRemoving or SpreadsheetControl.ColumnsRemoving event and use the StartIndex property to get the index of the row/column from which the operation starts.
The following code snippets (auto-collected from DevExpress Examples) contain references to the StartIndex 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.
Worksheet sheet = spreadsheetControl.ActiveWorksheet;
CellRange rowRange = sheet.Range.FromLTRB(0, e.StartIndex, 16383, e.StartIndex + e.Count - 1);
CellRange boundRange = sheet.DataBindings[0].Range;
winforms-spreadsheet-bind-to-ms-sql-server-database/CS/SuppliersExample/Form1.cs#L90
Worksheet sheet = spreadsheetControl1.ActiveWorksheet;
CellRange rowRange = sheet.Range.FromLTRB(0, e.StartIndex, 16383, e.StartIndex + e.Count - 1);
CellRange boundRange = sheet.DataBindings[0].Range;
Dim sheet As Worksheet = Me.spreadsheetControl.ActiveWorksheet
Dim rowRange As CellRange = sheet.Range.FromLTRB(0, e.StartIndex, 16383, e.StartIndex + e.Count - 1)
Dim boundRange As CellRange = sheet.DataBindings(0).Range
winforms-spreadsheet-bind-to-ms-sql-server-database/VB/SuppliersExample/Form1.vb#L86
Dim sheet As Worksheet = spreadsheetControl1.ActiveWorksheet
Dim rowRange As CellRange = sheet.Range.FromLTRB(0, e.StartIndex, 16383, e.StartIndex + e.Count - 1)
Dim boundRange As CellRange = sheet.DataBindings(0).Range
See Also
RowsColumnsChangingEventArgsBase Class