Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Top10FilterItem Class / Top10FilterItem Constructor
A boolean value that indicates whether items are filtered in descending order
An integer value that indicates the minimum number of items to be filtered
A boolean value that indicates whether items are filtered by percentage or item
Example


In This Topic
    Top10FilterItem Constructor
    In This Topic
    Creates a new Top10Filter instance with customized settings.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal descending As Boolean, _
       ByVal number As Integer, _
       ByVal isPercent As Boolean _
    )
    'Usage
     
    
    Dim descending As Boolean
    Dim number As Integer
    Dim isPercent As Boolean
     
    Dim instance As New Top10FilterItem(descending, number, isPercent)
    public Top10FilterItem( 
       bool descending,
       int number,
       bool isPercent
    )

    Parameters

    descending
    A boolean value that indicates whether items are filtered in descending order
    number
    An integer value that indicates the minimum number of items to be filtered
    isPercent
    A boolean value that indicates whether items are filtered by percentage or item
    Example
    This example creates a top 10 filter.
    See Also