Back to Devexpress

RowsColumnsChangingEventArgsBase.StartIndex Property

officefileapi-devexpress-dot-spreadsheet-dot-rowscolumnschangingeventargsbase-11b2d6aa.md

latest4.4 KB
Original Source

RowsColumnsChangingEventArgsBase.StartIndex Property

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

Declaration

csharp
public int StartIndex { get; }
vb
Public ReadOnly Property StartIndex As Integer

Property Value

TypeDescription
Int32

A zero-based integer that is the index of the row/column from which insertion or removal should start.

|

Remarks

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.

wpf-spreadsheet-bind-spreadsheet-to-ms-sql-server-database/CS/WpfSpreadsheet_BindToDataSource/MainWindow.xaml.cs#L109

csharp
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

csharp
Worksheet sheet = spreadsheetControl1.ActiveWorksheet;
CellRange rowRange = sheet.Range.FromLTRB(0, e.StartIndex, 16383, e.StartIndex + e.Count - 1);
CellRange boundRange = sheet.DataBindings[0].Range;

wpf-spreadsheet-bind-spreadsheet-to-ms-sql-server-database/VB/WpfSpreadsheet_BindToDataSource/MainWindow.xaml.vb#L92

vb
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

vb
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

RowsColumnsChangingEventArgsBase Members

DevExpress.Spreadsheet Namespace