officefileapi-devexpress-dot-spreadsheet-dot-rowscolumnschangingeventargsbase.md
Gets the number of rows/columns that will be inserted or removed.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public int Count { get; }
Public ReadOnly Property Count As Integer
| Type | Description |
|---|---|
| Int32 |
An integer that is the number of affected rows/columns.
|
Handle the SpreadsheetControl.RowsInserting, SpreadsheetControl.ColumnsInserting, SpreadsheetControl.RowsRemoving or SpreadsheetControl.ColumnsRemoving event and use the Count property to determine the number of rows/columns that should be inserted or removed.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Count 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