Visual Basic (Declaration) | |
---|---|
Public Enum PagerPosition Inherits System.Enum |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As PagerPosition |
C# | |
---|---|
public enum PagerPosition : System.Enum |
Member | Description |
---|---|
Bottom | Displays the page navigation aids in a bar at the bottom of the Spread component and below a command bar (if shown) |
CommandBar | Displays the page navigation aids on the command bar |
Top | Displays the page navigation aids in a bar at the top of the Spread component |
TopBottom | Displays the page navigation aids at the top and bottom of the Spread component in two separate bars |
TopCommandBar | Displays the page navigation aids in a bar at the top of the Spread component and on the command bar |
Use these settings with the Position property to specify the position and location of page navigation aids.
This example creates a spreadsheet with 5 columns and 150 rows. The properties for page navigation are assigned.
C# | Copy Code |
---|---|
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; |
Visual Basic | Copy Code |
---|---|
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.PagerPosition
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
Reference
FarPoint.Web.Spread NamespacePosition Property
PagerMode Enumeration