Rows
Rows class
Represents a rows collection of table.
public sealed class Rows : IEnumerable<Row>
Constructors
Name |
Description |
Rows() |
The default constructor. |
Properties
Name |
Description |
Count { get; } |
The items count. |
Item { get; set; } |
Gets or sets row. |
Methods
Name |
Description |
Add() |
Add row to collection. |
Add(Row) |
Add row to cellection. |
Dispose() |
Dispose. |
GetEnumerator() |
Gets collection’s enumerator |
IndexOf(Row) |
Returns index of row in collection. |
Remove(Row) |
Remove row from collection. |
RemoveAt(int) |
Remove row at position from collection. |
RemoveRange(int, int) |
Remove row set from collection. |
See Also