IRowCollection

IRowCollection interface

Represents table row collection.

public interface IRowCollection : IGenericCollection<IRow>

Properties

NameDescription
Item { get; }Gets the element at the specified index.

Methods

NameDescription
AddClone(IRow, bool)Creates a copy of the specified template row and inserts it at the bottom of a table.
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