Returns an IRangeRows interface that represents the rows in the specified range.
[Visual Basic] Property ReadOnly Rows As IRangeRows [C#] IRangeRows Rows { get; } [C++] __property IRangeRows* get_Rows(); [JScript] function get Rows() : IRangeRows
IRangeRows interface.
This example sets the font style in the second row of range A1:F10 to bold.
[C#]
IRange range = book.Worksheets[1].Range["A1:F10"];
range.Rows[2].Font.Bold = true;
[Visual Basic]
Dim range As IRange
range = book.Worksheets(1).Range("A1:F10")
range.Rows(2).Font.Bold = True
[C++]
IRange* range;
range = book->Worksheets->Item[1]->Range->Item[S"A1:F10"];
range->Rows->Item[2]->Font->Bold = true;
IRange Interface | NativeExcel Namespace | IRangeRows Interface