Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / PagerPosition Enumeration
Example Example


In This Topic
    PagerPosition Enumeration
    In This Topic
    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

    See Also