[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.Rows

Rows Property

Rows

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.

Declaration
IRange Rows { get; }
ReadOnly Property Rows As IRange
Examples
worksheet.Range["A1"].Value = "Name";
worksheet.Range["B1"].Value = "Value";
IRange rows = worksheet.Rows;
IRange firstRow = rows[0];