Class ColorScale (Excel VBA)

The class ColorScale represents a color scale conditional formatting rule.


Dim cse as ColorScale
Set cse = ActiveCell.FormatConditions(Index:=1)

For Each

Here is an example of processing the ColorScale items in a collection.


Dim cseFormatCondition As ColorScale
For Each cseFormatCondition In ActiveCell.FormatConditions
	
Next cseFormatCondition

Methods

Delete - Deletes the specified conditional formatting rule object.

ModifyAppliesToRange - Sets the cell range to which this formatting rule applies.

SetFirstPriority - Sets the priority value for this conditional formatting rule to "1" so that it will be evaluated before all other rules on the worksheet.

SetLastPriority - Sets the evaluation order for this conditional formatting rule so that it is evaluated after all other rules on the worksheet.

Properties

AppliesTo returns a Range object specifying the cell range to which the formatting rule is applied.

ColorScaleCriteria returns a ColorScaleCriteria object, which is a collection of individual ColorScaleCriterion objects. The ColorScaleCriterion object specifies the type, value, and color of threshold criteria used in the color scale conditional format.

Formula returns or sets a String representing a formula that determines the values to which the icon set will be applied.

Priority returns or sets the priority value of the conditional formatting rule. The priority determines the order of evaluation when multiple conditional formatting rules exist on a worksheet.

PTCondition returns a Boolean value indicating if the conditional format is being applied to a PivotTable.

ScopeType returns or sets one of the constants of the XlPivotConditionScope enumeration, which determines the scope of the conditional format when it is applied to a PivotTable.

StopIfTrue returns or sets a Boolean value that determines if additional formatting rules on the cell should be evaluated if the current rule evaluates to True.

Type returns one of the constants of the XlFormatConditionType enumeration, which specifies the type of conditional format.

ColorScaleCriteria - A collection of ColorScaleCriterion objects that represents all of the criteria for a color scale conditional format. Each criterion specifies the minimum, midpoint, or maximum threshold for the color scale.

Range - Represents a cell, a row, a column, a selection of cells containing one or more contiguous blocks of cells, or a 3D range.