Add Emphasis Mark Font Formatting to Important Text in Word Document using C# .NET or Java | Dot Circle Comma Characters

I can set the wavy line in the font of run but not the emphasis,please add this feature ! thanks!

i also had this problem,it’s been two years now. It’s time to fix it ! thanks!

1 Like

@frankDsl

Unfortunately, the requested feature is not implemented yet. The feature ID is WORDSNET-13983. You will be notified via this forum thread once this feature is available.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-13983) have been fixed in this Aspose.Words for .NET 20.6 update and this Aspose.Words for Java 20.6 update.

@frankDsl,

It is to inform you that now you can add Emphasis Marks to the Text in Word document using 20.6 versions of Aspose.Words for .NET and Aspose.Words for Java APIs. The emphasis mark is an additional character that is rendered above or below the main character glyph. For more information, please check the following API pages and code example:

C# Code:

Document document = new Document();
DocumentBuilder builder = new DocumentBuilder(document);

builder.Font.EmphasisMark = EmphasisMark.UnderSolidCircle;

builder.Write("Emphasis text");
builder.Writeln();
builder.Font.ClearFormatting();
builder.Write("Simple text");

document.Save("E:\\temp\\20.6.docx");