Word.InsertFileOptions interface
指定用于确定插入文件时要复制的内容的选项。
注解
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/insert-external-document.yaml
// Inserts content (applying selected settings) from another document passed in as a Base64-encoded string.
await Word.run(async (context) => {
// Use the Base64-encoded string representation of the selected .docx file.
context.document.insertFileFromBase64(externalDocument, "Replace", {
importTheme: true,
importStyles: true,
importParagraphSpacing: true,
importPageColor: true,
importChangeTrackingMode: true,
importCustomProperties: true,
importCustomXmlParts: true,
importDifferentOddEvenPages: true
});
await context.sync();
});
属性
import |
表示是否应从源文档导入更改跟踪模式状态。 |
import |
表示是否应从源文档导入页面颜色和其他背景信息。 |
import |
表示是否应导入源文档中的段落间距。 |
import |
表示是否应导入源文档中的样式。 |
import |
表示是否应从源文档导入主题。 |