Gets or sets the first visible row.
[Visual Basic] Property ScrollRow As Integer [C#] int ScrollRow { get; set; } [C++] __property int get_ScrollRow(); __property void set_ScrollRow(int ); [JScript] function get ScrollRow() : int function set ScrollRow(int);
The one-based index number of the row.
This example sets the first visible row to 4.
[C#]
book.Worksheets[1].ScrollRow = 4;
[Visual Basic]
book.Worksheets(1).ScrollRow = 4
[C++]
book->Worksheets->Item[1]->ScrollRow = 4;
IWorksheet Interface | NativeExcel Namespace | ScrollColumn Property