Word.CompareTarget enum
Gibt das Zieldokument zum Anzeigen von Dokumentvergleichsunterschieden an.
Hinweise
[ API-Satz: WordApiDesktop 1.1 ]
Beispiele
// 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.");
});
Felder
compareTargetCurrent = "CompareTargetCurrent" | Versieht das aktuelle Dokument mit Vergleichsunterschieden. |
compareTargetNew = "CompareTargetNew" | Versieht ein neues Dokument mit Vergleichsunterschieden. |
compareTargetSelected = "CompareTargetSelected" | Versieht das Zieldokument mit Vergleichsunterschieden. |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins