[]
Returns the IRange object that represents the rows in the specified range.
IRange Rows { get; }
ReadOnly Property Rows As IRange
IRange range = worksheet.Range["B2:C3"]; IRange rows = range.Rows; int rowCount = rows.Count;