我正在尝试在Word VSTO(2013)中更改Comment对象的文本,但无论出于何种原因,我无法通过Application.ActiveDocument.Range(int,int)或comment.Reference.Find.Execute选择文本(文本)。虽然这两项行动都是“工作”。当你调用.select()方法之后,没有选择任何东西。那么如何在Word VSTO中改变Comment的字体或文本颜色?
答案 0 :(得分:1)
您需要通过Comment.Range
对象访问它,而不是Comment.Reference
。例如。
Comments[1].Range.Font.Shading.BackgroundPatternColor = WdColor.wdColorDarkTeal;
或
Comments[1].Range.HighlightColorIndex = WdColorIndex.wdYellow;