[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.EntireRow

EntireRow Property

EntireRow

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

Declaration
IRange EntireRow { get; }
ReadOnly Property EntireRow As IRange
Examples
IRange range = worksheet.Range["B2:C3"];
IRange entireRow = range.EntireRow;
int columnCount = entireRow.ColumnCount;