'Declaration Public Function AddTwoScaleRule( _ ByVal minType As ScaleValueType, _ ByVal minValue As System.Object, _ ByVal minColor As System.Windows.Media.Color, _ ByVal maxType As ScaleValueType, _ ByVal maxValue As System.Object, _ ByVal maxColor As System.Windows.Media.Color, _ ByVal ParamArray ranges() As CellRange _ ) As TwoColorScaleRule
'Usage Dim instance As ConditionalFormat Dim minType As ScaleValueType Dim minValue As System.Object Dim minColor As System.Windows.Media.Color Dim maxType As ScaleValueType Dim maxValue As System.Object Dim maxColor As System.Windows.Media.Color Dim ranges() As CellRange Dim value As TwoColorScaleRule value = instance.AddTwoScaleRule(minType, minValue, minColor, maxType, maxValue, maxColor, ranges)
public TwoColorScaleRule AddTwoScaleRule( ScaleValueType minType, System.object minValue, System.Windows.Media.Color minColor, ScaleValueType maxType, System.object maxValue, System.Windows.Media.Color maxColor, params CellRange[] ranges )
Parameters
- minType
- The minimum scale type.
- minValue
- The minimum scale value.
- minColor
- The minimum scale color.
- maxType
- The maximum scale type.
- maxValue
- The maximum scale value.
- maxColor
- The maximum scale color.
- ranges
- The cell ranges where the rule is applied.
Return Value
Returns the new two color scale rule.