IMathAccent

IMathAccent interface

Specifies the accent function, consisting of a base and a combining diacritical mark Example: 𝑎́

public interface IMathAccent : IMathElement

Properties

NameDescription
AsIMathElement { get; }Allows to get base IMathElement interface IMathElement
Base { get; }The argument to which the accent was applied
Character { get; set; }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)

Examples

Example:

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

See Also