Mohamed Kamal

Mohamed Kamal

  • NA
  • 4
  • 1.9k

How to add a text to Word document with font color using C#

May 9 2018 3:56 AM
I have a word document and I want to add some words to the end of it with font color using C#, any help ?
I tried to use the following code but it don't work 
 
  1. doc1.Words[i].InsertAfter("Text to be added");  
  2. doc1.Words[i].Font.ColorIndex = WdColorIndex.wdBlue;  

Answers (2)