Excel.CellPropertiesLoadOptions interface
表示用作“range.getCellProperties”方法的一部分时要加载的单元格属性。
属性
address | 指定是否在 属性上 |
address |
指定是否在 属性上 |
format | 指定是否在 属性上 |
hidden | 指定是否在 属性上 |
hyperlink | 指定是否在 属性上 |
style | 指定是否在 属性上 |
属性详细信息
address
指定是否在 属性上 address
加载。
address?: boolean;
属性值
boolean
示例
// 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}`);
});
addressLocal
format
指定是否在 属性上 format
加载。
format?: Excel.CellPropertiesFormatLoadOptions;