add method

add

Adds a formatting condition and effected cell rang to the FormatConditions The FormatConditions can contain up to three conditional formats. References to the other sheets are not allowed in the formulas of conditional formatting.

Returns

[0]:Formatting condition object index;[1] Effected cell rang index.

def add(self, cell_area, type, operator_type, formula1, formula2):
    ...
ParameterTypeDescription
cell_areaCellAreaConditional formatted cell range.
typeFormatConditionTypeType of conditional formatting.It could be one of the members of FormatConditionType.
operator_typeOperatorTypeComparison operator.It could be one of the members of OperatorType.
formula1strThe value or expression associated with conditional formatting.
formula2strThe value or expression associated with conditional formatting

See Also