[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableRow.Range

Range Property

Range

Gets the IRange object that represents the range occupied by this table row.

The returned range corresponds to the cells occupied by the current data row within its parent ITable.

Declaration
IRange Range { get; }
ReadOnly Property Range As IRange
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Test", 100},
    {"Demo", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
ITableRow row = table.Rows[0];
IRange range = row.Range;