Excel.CalculationType enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/50-workbook/workbook-calculation.yaml
await Excel.run(async (context) => {
context.application.calculate(Excel.CalculationType.recalculate);
await context.sync();
});
フィールド
full = "Full" | これにより、すべてのセルがダーティとしてマークされ、再計算されます。 |
fullRebuild = "FullRebuild" | これにより、完全な依存関係チェーンが再構築され、すべてのセルがダーティとしてマークされ、再計算されます。 |
recalculate = "Recalculate" | Recalculates all cells that Excel has marked as dirty, that is, dependents of volatile or changed data, and cells programmatically marked as dirty. |