DuplicateStyle
内容
[
隐藏
]CleanupOptions.DuplicateStyle property
获取/设置一个标志,指示是否应从文档中删除重复样式。 默认值为错误的
.
public bool DuplicateStyle { get; set; }
例子
演示如何从文档中删除重复的样式。
Document doc = new Document();
// 将两个具有相同属性的样式添加到文档中,
// 但名称不同。第二种样式被认为是第一种样式的重复。
Style myStyle = doc.Styles.Add(StyleType.Paragraph, "MyStyle1");
myStyle.Font.Size = 14;
myStyle.Font.Name = "Courier New";
myStyle.Font.Color = Color.Blue;
Style duplicateStyle = doc.Styles.Add(StyleType.Paragraph, "MyStyle2");
duplicateStyle.Font.Size = 14;
duplicateStyle.Font.Name = "Courier New";
duplicateStyle.Font.Color = Color.Blue;
Assert.AreEqual(6, doc.Styles.Count);
// 将两种样式应用到文档中的不同段落。
DocumentBuilder builder = new DocumentBuilder(doc);
builder.ParagraphFormat.StyleName = myStyle.Name;
builder.Writeln("Hello world!");
builder.ParagraphFormat.StyleName = duplicateStyle.Name;
builder.Writeln("Hello again!");
ParagraphCollection paragraphs = doc.FirstSection.Body.Paragraphs;
Assert.AreEqual(myStyle, paragraphs[0].ParagraphFormat.Style);
Assert.AreEqual(duplicateStyle, paragraphs[1].ParagraphFormat.Style);
// 配置一个 CleanOptions 对象,然后调用 Cleanup 方法来替换所有重复的样式
// 保留原始内容并从文档中删除重复项。
CleanupOptions cleanupOptions = new CleanupOptions { DuplicateStyle = true };
doc.Cleanup(cleanupOptions);
Assert.AreEqual(5, doc.Styles.Count);
Assert.AreEqual(myStyle, paragraphs[0].ParagraphFormat.Style);
Assert.AreEqual(myStyle, paragraphs[1].ParagraphFormat.Style);
也可以看看
- class CleanupOptions
- 命名空间 Aspose.Words
- 部件 Aspose.Words