ExcelScript.TextConditionalFormat interface
Representa um formato condicional de texto específico.
Comentários
Exemplos
/**
* 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
get |
Devolve um objeto de formato, encapsulando o tipo de letra, o preenchimento, os limites e outras propriedades do formato condicional. |
get |
A regra da formatação condicional. |
set |
A regra da formatação condicional. |
Detalhes do método
getFormat()
Devolve um objeto de formato, encapsulando o tipo de letra, o preenchimento, os limites e outras propriedades do formato condicional.
getFormat(): ConditionalRangeFormat;
Retornos
getRule()
A regra da formatação condicional.
getRule(): ConditionalTextComparisonRule;
Retornos
setRule(rule)
A regra da formatação condicional.
setRule(rule: ConditionalTextComparisonRule): void;
Parâmetros
Retornos
void
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.