RowCollection

RowCollection class

Represents table row collection.

public sealed class RowCollection : DomObject<Table>, IRowCollection

Properties

NameDescription
Count { get; }Gets the number of rows actually contained in the collection. Read-only Int32.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; }Returns the row at the specified index. Read-only Row.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

Methods

NameDescription
AddClone(IRow, bool)Creates a copy of the specified template row and inserts it at the bottom of a table.
CopyTo(Array, int)Copies all elements from the collection to the specified array.
GetEnumerator()Returns an enumerator that iterates through the collection.
InsertClone(int, IRow, bool)Creates a copy of the specified template row and insert it at the specified position in a table.
RemoveAt(int, bool)Removes a row at the specified position from a table.

See Also