[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Rows

Rows Property

Rows

Returns the IRange object that represents the rows in the specified range.

Declaration
IRange Rows { get; }
ReadOnly Property Rows As IRange
Examples
IRange range = worksheet.Range["B2:C3"];
IRange rows = range.Rows;
int rowCount = rows.Count;