[]
Gets the collection of data rows in this ITable.
The returned ITableRows object contains the ITableRow objects that belong to the table data area.
ITableRows Rows { get; }
ReadOnly Property Rows As ITableRows
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];