Spread for ASP.NET 8.0 Product Documentation
PagerPosition Enumeration
Example Example 


Specifies in which tool bars the page navigation aids are displayed in the Spread component.
Syntax
'Declaration
 
Public Enum PagerPosition 
   Inherits System.Enum
'Usage
 
Dim instance As PagerPosition
public enum PagerPosition : System.Enum 
Members
MemberDescription
BottomDisplays the page navigation aids in a bar at the bottom of the Spread component and below a command bar (if shown)
CommandBarDisplays the page navigation aids on the command bar
TopDisplays the page navigation aids in a bar at the top of the Spread component
TopBottomDisplays the page navigation aids at the top and bottom of the Spread component in two separate bars
TopCommandBarDisplays the page navigation aids in a bar at the top of the Spread component and on the command bar
Remarks

Use these settings with the Position property to specify the position and location of page navigation aids.

Example
This example creates a spreadsheet with 5 columns and 150 rows. The properties for page navigation are assigned.
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
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.PagerPosition

Requirements

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

See Also

Reference

FarPoint.Web.Spread Namespace
Position Property
PagerMode Enumeration

User-Task Documentation

Customizing Page Navigation

 

 


Copyright © GrapeCity, inc. All rights reserved.