[]
Represents a collection of all the ITableRow objects in the specified ITable object. Each ITableRow object represents a row in the table.
public interface ITableRows : IEnumerable
Returns the number of objects in the collection (read-only).
int Count { get; }
Gets the ITableRow at the specified index.
ITableRow this[int index] { get; }
index
intThe index.
Adds new row(s) to the table object.
void Add(int position, int count)
position
int0 based Integer. Specifies the relative position of the new row(s).
count
intSpecifies the count of the new row(s).
Adds a new row to the table object. Returns the ITableRow object.
ITableRow Add(int position = -1)
position
intOptional 0 based Integer. Specifies the relative position of the new row.
Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s).
void Delete(int position, int count)
position
int0 based Integer. Specifies the relative position of the deleted row(s).
count
intSpecifies the count of the deleted row(s).