Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / AllowPage Property
Example


In This Topic
    AllowPage Property
    In This Topic
    Gets or sets whether the sheet displays the number of pages and the arrows for navigating to other pages in the sheet.
    Syntax
    'Declaration
     
    
    Public Property AllowPage As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim value As Boolean
     
    instance.AllowPage = value
     
    value = instance.AllowPage
    public bool AllowPage {get; set;}

    Property Value

    Boolean: true to display the page numbers and navigation aids; false otherwise
    Remarks

    For more information on page navigation, refer to Customizing Page Navigation.

    Example
    This example assigns a SheetView object to the active sheet and defines the number of columns and rows in the sheet, then sets AllowPage to true, which allows the user to click the page arrows on the Command Bar to scroll between pages of rows.
    See Also