在 Word 文档中,我想找到所有出现的样式并将其删除,这意味着删除应用了该样式的所有文本。这是一种字符样式,因此它可以应用于单个单词或段落中的所有单词。
这是我到目前为止所拥有的:
public void removeStyle(Microsoft.Office.Interop.Word.Document document, string styleName)
{
Microsoft.Office.Interop.Word.Range rng = document.Range();
Microsoft.Office.Interop.Word.Style style = null;
foreach (Microsoft.Office.Interop.Word.Style currentStyle in document.Styles)
{
if (currentStyle.NameLocal == "Only CZ")
style = currentStyle;
}
rng.Find.ClearFormatting();
rng.Find.Replacement.ClearFormatting();
rng.Find.set_Style(style);
rng.Find.Forward = true;
rng.Find.Wrap = Microsoft.Office.Interop.Word.WdFindWrap.wdFindStop;
//change this property to true as we want to replace format
rng.Find.Format = true;
rng.Find.Execute(Replace: Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll);
}
编辑:上述方法仅在样式应用于整个段落时有效,但不适用于单个单词。