Character

MathAccent.Character property

Accent Character The value should be within the range of (U+0300–U+036F) or(U+20D0–U+20EF) Default value: Combining Circumflex Accent (U+0302)

public char Character { get; set; }

Examples

Example:

[C#]
IMathAccent accent = new MathematicalText("x").Accent('~');
char ch = accent.Character;

See Also