ExcelScript.ConditionalRangeFont interface
Este objeto representa los atributos de fuente (estilo de fuente, color, etc.) de un objeto.
Comentarios
Ejemplos
/**
* This script applies cell value conditional formatting to a range.
* Any value less than 60 will have the cell's fill color changed and the font made italic.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the range to format.
const selectedRange = workbook.getSelectedRange();
// Add cell value conditional formatting.
const cellValueConditionalFormatting =
selectedRange.addConditionalFormat(ExcelScript.ConditionalFormatType.cellValue).getCellValue();
// Create the condition, in this case when the cell value is less than 60.
const rule: ExcelScript.ConditionalCellValueRule = {
formula1: "60",
operator: ExcelScript.ConditionalCellValueOperator.lessThan
};
cellValueConditionalFormatting.setRule(rule);
// Set the format to apply when the condition is met.
const format: ExcelScript.ConditionalRangeFormat = cellValueConditionalFormatting.getFormat();
const fill: ExcelScript.ConditionalRangeFill = format.getFill();
const font: ExcelScript.ConditionalRangeFont = format.getFont();
fill.setColor("yellow");
font.setItalic(true);
}
Métodos
clear() | Restablece los formatos de fuente. |
get |
Especifica si la fuente está en negrita. |
get |
Representación del código de color HTML del color de texto (por ejemplo, #FF0000 representa Rojo). |
get |
Especifica si la fuente está en cursiva. |
get |
Especifica el estado de tachado de la fuente. |
get |
Tipo de subrayado aplicado a la fuente. Vea |
set |
Especifica si la fuente está en negrita. |
set |
Representación del código de color HTML del color de texto (por ejemplo, #FF0000 representa Rojo). |
set |
Especifica si la fuente está en cursiva. |
set |
Especifica el estado de tachado de la fuente. |
set |
Tipo de subrayado aplicado a la fuente. Vea |
Detalles del método
clear()
Restablece los formatos de fuente.
clear(): void;
Devoluciones
void
getBold()
Especifica si la fuente está en negrita.
getBold(): boolean;
Devoluciones
boolean
getColor()
Representación del código de color HTML del color de texto (por ejemplo, #FF0000 representa Rojo).
getColor(): string;
Devoluciones
string
getItalic()
Especifica si la fuente está en cursiva.
getItalic(): boolean;
Devoluciones
boolean
getStrikethrough()
Especifica el estado de tachado de la fuente.
getStrikethrough(): boolean;
Devoluciones
boolean
getUnderline()
Tipo de subrayado aplicado a la fuente. Vea ExcelScript.ConditionalRangeFontUnderlineStyle
para más información.
getUnderline(): ConditionalRangeFontUnderlineStyle;
Devoluciones
setBold(bold)
Especifica si la fuente está en negrita.
setBold(bold: boolean): void;
Parámetros
- bold
-
boolean
Devoluciones
void
setColor(color)
Representación del código de color HTML del color de texto (por ejemplo, #FF0000 representa Rojo).
setColor(color: string): void;
Parámetros
- color
-
string
Devoluciones
void
setItalic(italic)
Especifica si la fuente está en cursiva.
setItalic(italic: boolean): void;
Parámetros
- italic
-
boolean
Devoluciones
void
setStrikethrough(strikethrough)
Especifica el estado de tachado de la fuente.
setStrikethrough(strikethrough: boolean): void;
Parámetros
- strikethrough
-
boolean
Devoluciones
void
setUnderline(underline)
Tipo de subrayado aplicado a la fuente. Vea ExcelScript.ConditionalRangeFontUnderlineStyle
para más información.
setUnderline(underline: ConditionalRangeFontUnderlineStyle): void;
Parámetros
Devoluciones
void