How change the font family in document word
Infragistics.Documents.Word.
Font fontBleu30 = docWriter.CreateFont();
fontBleu30.Bold = true;
fontBleu30.Size = 30;
fontBleu30.ForeColor = Colors.Blue;
I TRy to change the font family in my font , but it is nor work.
thank you Caisseodev
I HAVE FORGET /
And to change the border of the text
thank Caisseodev
Hello Caisseodev,
To set the Font Family is within the Name property. E.g.:
fontBleu30.Name = "Arial";
As for changing the border can be set in TableProperties.
I have attached a sample.