EmphasisMark
Font.EmphasisMark property
Gets or sets the emphasis mark applied to this formatting.
public EmphasisMark EmphasisMark { get; set; }
Examples
Shows how to add additional character rendered above/below the glyph-character.
DocumentBuilder builder = new DocumentBuilder();
// Possible types of emphasis mark:
// https://apireference.aspose.com/words/net/aspose.words/emphasismark
builder.Font.EmphasisMark = emphasisMark;
builder.Write("Emphasis text");
builder.Writeln();
builder.Font.ClearFormatting();
builder.Write("Simple text");
builder.Document.Save(ArtifactsDir + "Fonts.SetEmphasisMark.docx");
See Also
- enum EmphasisMark
- class Font
- namespace Aspose.Words
- assembly Aspose.Words