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


In This Topic
    VirtualScrollPagingFormatString Property
    In This Topic
    Gets or sets the custom format string to show in the text tip during virtual scroll paging. Default pattern is "Page {page} of {count}", where {page} will be replaced for page index and {count} will be replaced for page count.
    Syntax
    'Declaration
     
    
    Public Property VirtualScrollPagingFormatString As String
    'Usage
     
    
    Dim instance As SheetView
    Dim value As String
     
    instance.VirtualScrollPagingFormatString = value
     
    value = instance.VirtualScrollPagingFormatString
    public string VirtualScrollPagingFormatString {get; set;}
    Remarks
    Page is the current page index and count is the total number of pages or page count.
    Example
    This example sets the VirtualScrollPagingFormatString property.
    See Also