[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.Rows

Rows Property

Rows

Gets the collection of data rows in this ITable.

The returned ITableRows object contains the ITableRow objects that belong to the table data area.

Declaration
ITableRows Rows { get; }
ReadOnly Property Rows As ITableRows
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Apple", 100},
    {"Pear", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
ITableRows rows = table.Rows;
ITableRow firstRow = rows[0];