Returns an IRangeRows interface that represents the entire row (or rows) that contains the specified range.
[Visual Basic] Property ReadOnly EntireRow As IRangeRows [C#] IRangeRows EntireRow { get; } [C++] __property IRangeRows* get_EntireRow(); [JScript] function get EntireRow() : IRangeRows
IRangeRows interface.
This example sets the value of the first cell in the first row that contains the selected range.
[C#]
book.Worksheets[1].Selection.EntireRow[1, 1].Value = 10;
[Visual Basic]
book.Worksheets(1).Selection.EntireRow(1, 1).Value = 10
[C++]
book->Worksheets->Item[1]->Selection->EntireRow->Item[1, 1]->Value = 10;
IRange Interface | NativeExcel Namespace | Selection Property | EntireColumn Property | IRangeRows Interface