FontNameAscii Property |
Namespace: Aspose.Words
DocumentBuilder builder = new DocumentBuilder(); // This tells Microsoft Word to use Arial for characters 0..127 and // Times New Roman for characters 128..255 // Looks like a pretty strange case to me, but it is possible builder.Font.NameAscii = "Arial"; builder.Font.NameOther = "Times New Roman"; builder.Writeln("Hello, Привет"); builder.Document.Save(ArtifactsDir + "Font.Names.doc");