Class IconSetCondition (Excel VBA)

The class IconSetCondition represents an icon set conditional formatting rule.


Dim isc as IconSetCondition
Set isc = ActiveCell.FormatConditions(Index:=1)

For Each

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


Dim iscFormatCondition As IconSetCondition
For Each iscFormatCondition In ActiveCell.FormatConditions
	
Next iscFormatCondition

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.

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

IconCriteria returns an IconCriteria collection, which represents the set of criteria for an icon set conditional formatting rule.

IconSet returns or sets an IconSets collection, which specifies the icon set used in the conditional format.

PercentileValues returns or sets a Boolean value indicating if the thresholds for an icon set conditional format are determined by using percentiles.

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.

ReverseOrder returns or sets a Boolean value indicating if the order of icons is reversed for an icon set.

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.

ShowIconOnly returns or sets a Boolean value indicating if only the icon is displayed for an icon set conditional format.

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.

IconCriteria - Represents the collection of IconCriterion objects. Each IconCriterion object represents the values and threshold type for each icon in an icon set conditional formatting rule.

IconSet - Represents a single set of icons that are used in an icon set conditional formatting rule.

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