我写了一个小测试单词addon,我找不到改变单词字体颜色的方法.
这是我的代码:
这是我的代码:
var wordsList = this.Application.ActiveDocument.Words; wordsList[i].Font.TextColor = WdColor.wdColorRed;
这将无法编译,因为TextColor属性没有Setter(ReadOnly).
解决方法
有两种方法可以做到这一点.您可以使用Font.ColorIndex进行简单选择,也可以使用Font.Fill.ForeColor进行更广泛的选择.这是一些VBA:
Sub ChangeColorThisWay() Dim s As Range: Set s = Selection.Range s.Font.Fill.ForeColor = WdColor.wdColorRed End Sub Sub ChangeColorThatWay() Dim s As Range: Set s = Selection.Range s.Font.ColorIndex = WdColorIndex.wdBrightGreen End Sub
注意Font.Fill.ForeColor,你也可以访问RGB属性,并可以将字体设置为任何非常量颜色,如s.Font.Fill.ForeColor.RGB = RGB(255,255,0)集它变黄了.