Excel.CellPropertiesFillLoadOptions interface
Especifica as propriedades a carregar no format.fill
objeto.
Comentários
[ Conjunto de API: ExcelApi 1.9 ]
Propriedades
color | Especifica se pretende carregar a |
pattern | Especifica se pretende carregar a |
pattern |
Especifica se pretende carregar a |
pattern |
Especifica se pretende carregar a |
tint |
Especifica se pretende carregar a |
Detalhes da propriedade
color
Especifica se pretende carregar a color
propriedade.
color?: boolean;
Valor da propriedade
boolean
Comentários
[ Conjunto de API: ExcelApi 1.9 ]
Exemplos
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/cell-properties.yaml
await Excel.run(async (context) => {
const cell = context.workbook.getActiveCell();
// Define the cell properties to get by setting the matching LoadOptions to true.
const propertiesToGet = cell.getCellProperties({
address: true,
format: {
fill: {
color: true
},
font: {
color: true
}
},
style: true
});
// Sync to get the data from the workbook.
await context.sync();
const cellProperties = propertiesToGet.value[0][0];
console.log(
`Address: ${cellProperties.address}\nStyle: ${cellProperties.style}\nFill Color: ${cellProperties.format.fill.color}\nFont Color: ${cellProperties.format.font.color}`);
});
pattern
Especifica se pretende carregar a pattern
propriedade.
pattern?: boolean;
Valor da propriedade
boolean
Comentários
patternColor
Especifica se pretende carregar a patternColor
propriedade.
patternColor?: boolean;
Valor da propriedade
boolean
Comentários
patternTintAndShade
Especifica se pretende carregar a patternTintAndShade
propriedade.
patternTintAndShade?: boolean;
Valor da propriedade
boolean
Comentários
tintAndShade
Especifica se pretende carregar a tintAndShade
propriedade.
tintAndShade?: boolean;
Valor da propriedade
boolean