Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / ConditionalFormat Class / AddTop10Rule Method
The Top10ConditionType top 10 condition.
The number of top or bottom items to apply the style to.
The style that is applied to the cell when the condition is met.
The cell ranges where the rule is applied.


In This Topic
    AddTop10Rule Method
    In This Topic
    Adds the top 10 rule or bottom 10 rule to the collection based on the Top10CondtionType.
    Syntax
    'Declaration
     
    Public Function AddTop10Rule( _
       ByVal type As Top10ConditionType, _
       ByVal rank As Integer, _
       ByVal style As StyleInfo, _
       ByVal ParamArray ranges() As CellRange _
    ) As Top10Rule
    'Usage
     
    Dim instance As ConditionalFormat
    Dim type As Top10ConditionType
    Dim rank As Integer
    Dim style As StyleInfo
    Dim ranges() As CellRange
    Dim value As Top10Rule
     
    value = instance.AddTop10Rule(type, rank, style, ranges)
    public Top10Rule AddTop10Rule( 
       Top10ConditionType type,
       int rank,
       StyleInfo style,
       params CellRange[] ranges
    )

    Parameters

    type
    The Top10ConditionType top 10 condition.
    rank
    The number of top or bottom items to apply the style to.
    style
    The style that is applied to the cell when the condition is met.
    ranges
    The cell ranges where the rule is applied.

    Return Value

    Returns the new top 10 rule.
    See Also