C#将颜色应用于特定单词

时间:2016-04-07 05:56:26

标签: c# winforms ms-word export

我在WinForms中使用Microsoft.Interop.Word来创建word文档,

我要做的是更改输出文档中单词/单词的特定颜色,例如:

para5b.Range.Text = "my phone number is <different colour phone number here>";

我目前只将整个事情设置为:

para5b.Range.Font.Color = WdColor.wdColorBlack;

1 个答案:

答案 0 :(得分:2)

尝试

para5b.Range.Words[indexOfYourWord].Font.Color = yourDesiredColor;