Word.ErrorCodes enum
Remarques
Exemples
// 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);
}
}
}
Champs
accessDenied = "AccessDenied" | |
generalException = "GeneralException" | |
invalidArgument = "InvalidArgument" | |
itemNotFound = "ItemNotFound" | |
notAllowed = "NotAllowed" | |
notImplemented = "NotImplemented" | |
searchDialogIsOpen = "SearchDialogIsOpen" | |
searchStringInvalidOrTooLong = "SearchStringInvalidOrTooLong" |
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.