Compartir a través de


ExcelScript.TextConditionalFormat interface

Representa un formato condicional de texto específico.

Comentarios

Ejemplos

/**
 * This script adds conditional formatting to the first column in the worksheet.
 * This formatting gives the cells a green fill if they have text starting with "Excel".
 */
function main(workbook: ExcelScript.Workbook) {
  // Get the first column in the current worksheet.
  const currentSheet = workbook.getActiveWorksheet();
  const firstColumn = currentSheet.getRange("A:A");

  // Add conditional formatting based on the text in the cells.
  const textConditionFormat: ExcelScript.TextConditionalFormat = 
    firstColumn.addConditionalFormat(ExcelScript.ConditionalFormatType.containsText).getTextComparison();

  // Set the conditional format to provide a green fill.
  textConditionFormat.getFormat().getFill().setColor("green");

  // Apply the condition rule that the text begins with "Excel".
  const textRule: ExcelScript.ConditionalTextComparisonRule = {
    operator: ExcelScript.ConditionalTextOperator.beginsWith,
    text: "Excel"
  };
  textConditionFormat.setRule(textRule);
}

Métodos

getFormat()

Devuelve un objeto de formato, encapsulando la fuente, el relleno, los bordes y otras propiedades del formato condicional.

getRule()

Regla del formato condicional.

setRule(rule)

Regla del formato condicional.

Detalles del método

getFormat()

Devuelve un objeto de formato, encapsulando la fuente, el relleno, los bordes y otras propiedades del formato condicional.

getFormat(): ConditionalRangeFormat;

Devoluciones

getRule()

Regla del formato condicional.

getRule(): ConditionalTextComparisonRule;

Devoluciones

setRule(rule)

Regla del formato condicional.

setRule(rule: ConditionalTextComparisonRule): void;

Parámetros

Devoluciones

void