MathAccent

MathAccent(IMathElement)

Creates a math accent applying to a specified math element with the default accent character value

public MathAccent(IMathElement element)
ParameterTypeDescription
elementIMathElementa math element to apply accent

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("x");
MathAccent accent = new MathAccent(baseElement);

See Also


MathAccent(IMathElement, char)

Creates a math accent applying to a specified math element

public MathAccent(IMathElement element, char accentCharacter)
ParameterTypeDescription
elementIMathElementmath element to apply accent
accentCharacterCharaccent character

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("x");
MathAccent accent = new MathAccent(baseElement, '~');

See Also