[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.EntireColumn

EntireColumn Property

EntireColumn

Returns a new instance of IRange which represents the same range of cells, but expanded to include all rows.

Declaration
IRange EntireColumn { get; }
ReadOnly Property EntireColumn As IRange
Examples
IRange range = worksheet.Range["B2:C3"];
IRange entireColumn = range.EntireColumn;
int rowCount = entireColumn.RowCount;