Word.CompareTarget enum
Указывает целевой документ для отображения различий в сравнении документов.
Комментарии
[ Набор API: WordApiDesktop 1.1 ]
Примеры
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/compare-documents.yaml
// Compares the current document with a specified external document.
await Word.run(async (context) => {
// Absolute path of an online or local document.
const filePath = $("#filePath")
.val()
.toString();
// Options that configure the compare operation.
const options: Word.DocumentCompareOptions = {
compareTarget: Word.CompareTarget.compareTargetCurrent,
detectFormatChanges: false
// Other options you choose...
};
context.document.compare(filePath, options);
await context.sync();
console.log("Differences shown in the current document.");
});
Поля
compareTargetCurrent = "CompareTargetCurrent" | Places различия в сравнении в текущем документе. |
compareTargetNew = "CompareTargetNew" | Places различия в сравнении в новом документе. |
compareTargetSelected = "CompareTargetSelected" | Places различия в сравнении в целевом документе. |
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.
Office Add-ins