[]
Returns a new instance of IRange which represents the same range of cells, but expanded to include all rows.
IRange EntireColumn { get; }
ReadOnly Property EntireColumn As IRange
IRange range = worksheet.Range["B2:C3"];
IRange entireColumn = range.EntireColumn;
int rowCount = entireColumn.RowCount;