[]
Gets an IRange object that represents all rows in the worksheet.
You can use the returned range to access individual rows by index and perform row-level operations.
IRange Rows { get; }
ReadOnly Property Rows As IRange
worksheet.Range["A1"].Value = "Name";
worksheet.Range["B1"].Value = "Value";
IRange rows = worksheet.Rows;
IRange firstRow = rows[0];