MathElementBaseAccent Method |
Sets an accent mark (a character on the top of this element)
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathAccent Accent(
char accentCharacter
)
Public Function Accent (
accentCharacter As Char
) As IMathAccent
public:
virtual IMathAccent^ Accent(
wchar_t accentCharacter
) sealed
abstract Accent :
accentCharacter : char -> IMathAccent
override Accent :
accentCharacter : char -> IMathAccent
Parameters
- accentCharacter
- Type: SystemChar
Accent character. The value should be within the range of (U+0300–U+036F) or (U+20D0–U+20EF)
Return Value
Type:
IMathAccentNew instance of type
IMathAccentImplements
IMathElementAccent(Char)
ExamplesExample:
[C#]
IMathAccent accent = new MathematicalText("x").Accent('~');
See Also