Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / ConditionalFormat Class / AddDataBarRule Method
The minimum scale type.
The minimum scale value.
The maximum scale type.
The maximum scale value.
The color data bar to show on the view.
The cell ranges where the rule is applied.


In This Topic
    AddDataBarRule Method
    In This Topic
    Adds a data bar rule to the rule collection.
    Syntax
    'Declaration
     
    Public Function AddDataBarRule( _
       ByVal minType As ScaleValueType, _
       ByVal minValue As Object, _
       ByVal maxType As ScaleValueType, _
       ByVal maxValue As Object, _
       ByVal setColor As Color, _
       ByVal ParamArray ranges() As CellRange _
    ) As DataBarRule
    'Usage
     
    Dim instance As ConditionalFormat
    Dim minType As ScaleValueType
    Dim minValue As Object
    Dim maxType As ScaleValueType
    Dim maxValue As Object
    Dim setColor As Color
    Dim ranges() As CellRange
    Dim value As DataBarRule
     
    value = instance.AddDataBarRule(minType, minValue, maxType, maxValue, setColor, ranges)
    public DataBarRule AddDataBarRule( 
       ScaleValueType minType,
       object minValue,
       ScaleValueType maxType,
       object maxValue,
       Color setColor,
       params CellRange[] ranges
    )

    Parameters

    minType
    The minimum scale type.
    minValue
    The minimum scale value.
    maxType
    The maximum scale type.
    maxValue
    The maximum scale value.
    setColor
    The color data bar to show on the view.
    ranges
    The cell ranges where the rule is applied.

    Return Value

    Returns the new data bar rule.
    See Also