Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Excel.ConditionalTextOperator enum

Package:
excel

Represents the operator of the text conditional format type.

Remarks

API set: ExcelApi 1.6

Used by

Examples

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/14-conditional-formatting/conditional-formatting-basic.yaml

await Excel.run(async (context) => {
 const sheet = context.workbook.worksheets.getItem("Sample");
 const range = sheet.getRange("B16:D18");
 const conditionalFormat = range.conditionalFormats
 .add(Excel.ConditionalFormatType.containsText);
 conditionalFormat.textComparison.format.font.color = "red";
 conditionalFormat.textComparison.rule = { operator: Excel.ConditionalTextOperator.contains, text: "Delayed" };

 await context.sync();
});

Fields

beginsWith = "BeginsWith"
contains = "Contains"
endsWith = "EndsWith"
invalid = "Invalid"
notContains = "NotContains"

Feedback

Was this page helpful?