I am trying to change the style on existing formfields in an existing word doc.
doc.Range.FormFields["field1"].Font.Name = "Times New Roman";
doc.Range.FormFields["field1"].Font.Color = System.Drawing.Color.Red;
doc.Range.FormFields["field1"].Font.Size = 15;
None of the changes are appearing in the final document. The documentation states that they are get;set; properties. Is there a method to flush the changes?
I am filling the result propoerty also for the fields. I have tried moving the font code above and below where I am setting the result with no success.
What are we doing wrong?
Any help would be greatly appreciated.
Dan.