Accent

MathElementBase.Accent method

Sets an accent mark (a character on the top of this element)

public IMathAccent Accent(char accentCharacter)
ParameterTypeDescription
accentCharacterCharAccent character. The value should be within the range of (U+0300–U+036F) or (U+20D0–U+20EF)

Return Value

New instance of type IMathAccent

Examples

Example:

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

See Also