Accent()

IMathElement::Accent(char16_t) method

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

virtual System::SharedPtr<IMathAccent> Aspose::Slides::MathText::IMathElement::Accent(char16_t accentCharacter)=0

Arguments

ParameterTypeDescription
accentCharacterchar16_tAccent character. The value should be within the range of (U+0300\u2013U+036F) or (U+20D0\u2013U+20EF)

Return Value

New instance of type IMathAccent

Remarks

Example:

auto accent = System::MakeObject<MathematicalText>(u"x")->Accent(u'~');

See Also