Office.AsyncResultStatus enum
非同期呼び出しの結果を指定します。
注釈
AsyncResult オブジェクトの status
プロパティによって返されます。
例
// The following example logs selected text in a document to the console.
Office.context.document.getSelectedDataAsync(
Office.CoercionType.Text,
{
valueFormat: Office.ValueFormat.Unformatted,
filterType: Office.FilterType.All
},
(result) => {
if (result.status === Office.AsyncResultStatus.Failed) {
console.log(result.error.message);
return;
}
console.log(`Selected data: ${result.value}`);
}
);
フィールド
Failed | エラー オブジェクトをチェック、呼び出しが失敗しました。 |
Succeeded | 呼び出しが成功しました。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins