[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.Range

Range Property

Range

Returns the IRange object that represents the range to which the specified table object applies.

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