FormatCondition.Modify(XlFormatConditionType, Object, Object, Object) Method

Definition

Modifies an existing conditional format.

public void Modify (Microsoft.Office.Interop.Excel.XlFormatConditionType Type, object Operator, object Formula1, object Formula2);
Public Sub Modify (Type As XlFormatConditionType, Optional Operator As Object, Optional Formula1 As Object, Optional Formula2 As Object)

Parameters

Type
XlFormatConditionType

Required XlFormatConditionType. Specifies whether the conditional format is based on a cell value or an expression. Can be one of the following XlFormatCondition constants:xlCellValuexlExpression

Operator
Object

Optional XlFormatConditionOperator. The conditional format operator. Can be one of the following XlFormatConditionOperator constants:xlBetweenxlEqualxlGreaterxlGreaterEqualxlLessxlLessEqualxlNotBetweenxlNotEqualIf Type, is xlExpression, the Operator argument is ignored.

Formula1
Object

Optional Object. The value or expression associated with the conditional format. Can be a constant value, a string value, a cell reference, or a formula.

Formula2
Object

Optional Object. The value or expression associated with the conditional format. Can be a constant value, a string value, a cell reference, or a formula.

Applies to