Excel.CellPropertiesLoadOptions interface

表示用作“range.getCellProperties”方法的一部分时要加载的单元格属性。

[ API 集:ExcelApi 1.9 ]

属性

address

指定是否在 属性上 address 加载。

[ API 集:ExcelApi 1.9 ]

addressLocal

指定是否在 属性上 addressLocal 加载。

[ API 集:ExcelApi 1.9 ]

format

指定是否在 属性上 format 加载。

[ API 集:ExcelApi 1.9 ]

hidden

指定是否在 属性上 hidden 加载。

[ API 集:ExcelApi 1.9 ]

hyperlink

指定是否在 属性上 hyperlink 加载。

[ API 集:ExcelApi 1.9 ]

style

指定是否在 属性上 style 加载。

[ API 集:ExcelApi 1.9 ]

属性详细信息

address

指定是否在 属性上 address 加载。

[ API 集:ExcelApi 1.9 ]

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

指定是否在 属性上 addressLocal 加载。

[ API 集:ExcelApi 1.9 ]

addressLocal?: boolean;

属性值

boolean

format

指定是否在 属性上 format 加载。

[ API 集:ExcelApi 1.9 ]

format?: Excel.CellPropertiesFormatLoadOptions;

属性值

hidden

指定是否在 属性上 hidden 加载。

[ API 集:ExcelApi 1.9 ]

hidden?: boolean;

属性值

boolean

指定是否在 属性上 hyperlink 加载。

[ API 集:ExcelApi 1.9 ]

hyperlink?: boolean;

属性值

boolean

style

指定是否在 属性上 style 加载。

[ API 集:ExcelApi 1.9 ]

style?: boolean;

属性值

boolean