FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace : PagerMode Enumeration |
'Declaration Public Enum PagerMode Inherits System.Enum
'Usage Dim instance As PagerMode
public enum PagerMode : System.Enum
Member | Description |
---|---|
Both | Displays both the page numbers and page arrows of the pages in a sheet |
NextPrev | Displays arrows for next page and previous page, called the Next and Previous arrows |
Number | Displays page numbers of the pages in a sheet |
Slider | Displays a slider |
Use these settings with the PagerInfo class's Mode property to specify which page navigation aids to display.
A sheet can have multiple pages depending on how many rows can display at a time. How many rows are displayed depends on the height of the Spread component, the setting of the SheetView class PageSize property, and the number of rows of data. The component can display the page numbers and the page arrows (for next and previous pages). For information on where the page numbers and page arrows appear on the Spread component, refer to the PagerPosition enumeration and the PagerInfo class's Position property.
FpSpread1.Columns.Count=5;
FpSpread1.Rows.Count=150;
FpSpread1.ActiveSheetView.PageSize=30;
FpSpread1.Pager.Align=HorizontalAlign.Right;
FpSpread1.Pager.BackColor=Color.Yellow;
FpSpread1.Pager.Font.Bold=true;
FpSpread1.Pager.ForeColor=Color.DarkBlue;
FpSpread1.Pager.Position=FarPoint.Web.Spread.PagerPosition.Top;
FpSpread1.Pager.Mode=FarPoint.Web.Spread.PagerMode.Both;
FpSpread1.Pager.PageCount=3;
FpSpread1.Columns.Count=5
FpSpread1.Rows.Count=150
FpSpread1.ActiveSheetView.PageSize=30
FpSpread1.Pager.Align=HorizontalAlign.Right
FpSpread1.Pager.BackColor=Color.Yellow
FpSpread1.Pager.Font.Bold=True
FpSpread1.Pager.ForeColor=Color.DarkBlue
FpSpread1.Pager.Position=FarPoint.Web.Spread.PagerPosition.Top
FpSpread1.Pager.Mode=FarPoint.Web.Spread.PagerMode.Both
FpSpread1.Pager.PageCount=3
System.Object
System.ValueType
System.Enum
FarPoint.Web.Spread.PagerMode
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
FarPoint.Web.Spread Namespace
Mode Property
PagerPosition Enumeration