Static
$tStatic
nextGets the maximum number of items allowed in this collection.
Inserts one or more rows into the collection
[[InvalidOperationException]] If the operation is not allowed, e.g. if it would cause data to be shifted off the worksheet.
[[IndexOutOfRangeException]] If index is negative.
[[ArgumentOutOfRangeException]] If count is less than 1.
the insertion point
The number of rows to insert
Gets the row at the specified index.
Note: Iterating the collection will not create all rows. It will only iterate the rows which have already been used. To create and iterate all rows in the worksheet use a For loop, iterating from 0 to one less than the maximum row count, and pass in each index to the collection's indexer.
The row at the specified index.[[ArgumentOutOfRangeException]] 'index' is less than zero.
[[InvalidOperationException]] 'index' is greater than or equal to [[Workbook.maxExcelRowCount]] or [[Workbook.maxExcel2007RowCount]], depending on the [[Workbook.currentFormat]].
Removes one or more rows from the collection
[[InvalidOperationException]] If the operation is not allowed, e.g. if it the range intersects with a protected region.
[[IndexOutOfRangeException]] If index is negative.
[[ArgumentOutOfRangeException]] If count is less than 1.
the index of the first row to remove point
The number of rows to remove
Static
compareStatic
compareStatic
equalsStatic
equalsStatic
getStatic
getStatic
getStatic
referenceStatic
static
A collection of rows in a worksheet.
Rows in this collection are lazily created (they are only created and added to the collection when they are accessed). If this collection is enumerated, it only enumerates the rows which were already accessed.
See