[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableRows.Item

this Property

this[int]

Gets the ITableRow object at the specified index.

Declaration
ITableRow this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As ITableRow
Parameters
Type Name Description
int index

The index.

Property Value
Type Description
ITableRow

The ITableRow object at the specified index.

Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Score"},
    {"Alice", 90},
    {"Bob", 85}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
ITableRow row = table.Rows[0];