[]
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
Public Interface ITableRows
Inherits IEnumerable
Name | Description |
---|---|
Count | Returns the number of objects in the collection (read-only). |
this[int] | Gets the ITableRow at the specified index. |
Name | Description |
---|---|
Add(int) | Adds a new row to the table object. Returns the ITableRow object. |
Add(int, int) | Adds new row(s) to the table object. |
Delete(int, int) | Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s). |