OfficeExtension.ClientResult class
包含返回基元类型的方法的结果。 调用 后 context.sync()
,将从文档检索对象的 value 属性。
注解
示例
await Excel.run(async (context) => {
// Get the count of worksheets in the Excel workbook.
const workbook = context.workbook;
let countResult: OfficeExtension.ClientResult<number> = workbook.worksheets.getCount();
// Sync to populate the countResult object.
await context.sync();
// Log the count using the value parameter.
console.log(countResult.value);
});
属性
value | 调用后 |
属性详细信息
value
调用后 context.sync()
从文档检索的结果的值。
value: T;
属性值
T