SourceFullName
FieldInclude.SourceFullName property
获取或设置文档的位置。
public string SourceFullName { get; set; }
例子
演示如何创建 INCLUDE 字段并设置其属性。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 我们可以使用 INCLUDE 字段导入本地文件系统中另一个文档的一部分。
// 我们使用此字段引用的其他文档中的书签包含此导入的部分。
FieldInclude field = (FieldInclude)builder.InsertField(FieldType.FieldInclude, true);
field.SourceFullName = MyDir + "Bookmarks.docx";
field.BookmarkName = "MyBookmark1";
field.LockFields = false;
field.TextConverter = "Microsoft Word";
Assert.True(Regex.Match(field.GetFieldCode(), " INCLUDE .* MyBookmark1 \\\\c \"Microsoft Word\"").Success);
doc.UpdateFields();
doc.Save(ArtifactsDir + "Field.INCLUDE.docx");
也可以看看
- class FieldInclude
- 命名空间 Aspose.Words.Fields
- 部件 Aspose.Words