Class Rows

Rows class

Represents a rows collection of table.

public sealed class Rows : IEnumerable<Row>

Constructors

NameDescription
Rows()The default constructor.

Properties

NameDescription
Count { get; }The items count.
Item { get; set; }Gets or sets row.

Methods

NameDescription
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