如何在Word VSTO中更改注释的文本背景颜色?

时间:2017-01-28 03:09:10

标签: ms-word vsto office-addins

我正在尝试在Word VSTO(2013)中更改Comment对象的文本,但无论出于何种原因,我无法通过Application.ActiveDocument.Range(int,int)或comment.Reference.Find.Execute选择文本(文本)。虽然这两项行动都是“工作”。当你调用.select()方法之后,没有选择任何东西。那么如何在Word VSTO中改变Comment的字体或文本颜色?

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要通过Comment.Range对象访问它,而不是Comment.Reference。例如。

Comments[1].Range.Font.Shading.BackgroundPatternColor = WdColor.wdColorDarkTeal;

Comments[1].Range.HighlightColorIndex = WdColorIndex.wdYellow;