Word.ErrorCodes enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-checkbox-content-control.yaml
async function tryCatch(callback) {
try {
await callback();
} catch (error) {
// Note: In a production add-in, you'd want to notify the user through your add-in's UI.
if (error.code === Word.ErrorCodes.itemNotFound) {
console.warn("No checkbox content control is currently selected.");
} else {
console.error(error);
}
}
}
フィールド
accessDenied = "AccessDenied" | |
generalException = "GeneralException" | |
invalidArgument = "InvalidArgument" | |
itemNotFound = "ItemNotFound" | |
notAllowed = "NotAllowed" | |
notImplemented = "NotImplemented" | |
searchDialogIsOpen = "SearchDialogIsOpen" | |
searchStringInvalidOrTooLong = "SearchStringInvalidOrTooLong" |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins