ExcelScript.TopBottomConditionalFormat interface
Representa un formato condicional superior o inferior.
Comentarios
Ejemplos
/**
* This sample applies conditional formatting to the currently used range in the worksheet.
* The conditional formatting is a green fill for the top 10% of values.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the current worksheet.
let selectedSheet = workbook.getActiveWorksheet();
// Get the used range in the worksheet.
let range = selectedSheet.getUsedRange();
// Set the fill color to green for the top 10% of values in the range.
let conditionalFormat = range.addConditionalFormat(ExcelScript.ConditionalFormatType.topBottom)
conditionalFormat.getTopBottom().getFormat().getFill().setColor("green");
conditionalFormat.getTopBottom().setRule({
rank: 10, /* The percentage threshold. */
type: ExcelScript.ConditionalTopBottomCriterionType.topPercent /* The type of the top/bottom condition. */
});
}
Métodos
get |
Devuelve un objeto de formato, encapsulando la fuente, el relleno, los bordes y otras propiedades del formato condicional. |
get |
Criterios del formato condicional superior e inferior. |
set |
Criterios del formato condicional superior e inferior. |
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()
Criterios del formato condicional superior e inferior.
getRule(): ConditionalTopBottomRule;
Devoluciones
setRule(rule)
Criterios del formato condicional superior e inferior.
setRule(rule: ConditionalTopBottomRule): void;
Parámetros
Devoluciones
void
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.