[]
Returns the IRange object that represents the range to which the specified table object applies.
IRange Range { get; }
ReadOnly Property Range As IRange
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;