Gets or sets the number of the first page to display in the page navigation aids.
This example creates a spreadsheet with 5 columns, 150 rows and a page size of 30 rows. When first viewed, the pager displays the third page as the first page in the list.
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
sv.Columns.Count=5;
sv.Rows.Count=150;
sv.PageSize=30;
sv.StartPage=3;
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.Columns.Count=5
sv.Rows.Count=150
sv.PageSize=30
sv.StartPage=3