public final class MathAccent extends MathElementBase implements IMathAccent
Specifies the accent function, consisting of a base and a combining diacritical mark Example: 𝑎́
Example:IMathElement baseElement = new MathematicalText("x"); MathAccent accent = new MathAccent(baseElement, '~');
| Constructor and Description |
|---|
MathAccent(IMathElement element)
Creates a math accent applying to a specified math element with the default accent character value
|
MathAccent(IMathElement element,
char accentCharacter)
Creates a math accent applying to a specified math element
|
| Modifier and Type | Method and Description |
|---|---|
IMathElement |
getBase()
The argument to which the accent was applied
|
char |
getCharacter()
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)
|
IMathElement[] |
getChildren()
Get children elements
|
com.aspose.slides.OmmlControlCharacterPPTXUnsupportedProps |
getControlCharacterProperties()
Control Character Properties
|
void |
setCharacter(char value)
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)
|
accent, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, divide, divide, divide, divide, enclose, enclose, function, function, getParent_Immediate, group, group, integral, integral, integral, integral, integral, join, join, nary, nary, overbar, radical, radical, setLowerLimit, setLowerLimit, setSubscript, setSubscript, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheRight, setSubSuperscriptOnTheRight, setSuperscript, setSuperscript, setUpperLimit, setUpperLimit, toBorderBox, toBorderBox, toBox, toMathArray, underbarequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaccent, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, divide, divide, divide, divide, enclose, enclose, function, function, group, group, integral, integral, integral, integral, integral, join, join, nary, nary, overbar, radical, radical, setLowerLimit, setLowerLimit, setSubscript, setSubscript, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheRight, setSubSuperscriptOnTheRight, setSuperscript, setSuperscript, setUpperLimit, setUpperLimit, toBorderBox, toBorderBox, toBox, toMathArray, underbarpublic MathAccent(IMathElement element)
Creates a math accent applying to a specified math element with the default accent character value
Example:IMathElement baseElement = new MathematicalText("x"); MathAccent accent = new MathAccent(baseElement);
element - a math element to apply accentpublic MathAccent(IMathElement element, char accentCharacter)
Creates a math accent applying to a specified math element
Example:IMathElement baseElement = new MathematicalText("x"); MathAccent accent = new MathAccent(baseElement, '~');
element - math element to apply accentaccentCharacter - accent characterpublic final IMathElement getBase()
The argument to which the accent was applied
Example:IMathAccent accent = new MathematicalText("x").accent('~'); IMathElement base = accent.getBase();
getBase in interface IMathAccentpublic final char getCharacter()
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)
Example:IMathAccent accent = new MathematicalText("x").accent('~'); char ch = accent.getCharacter();
getCharacter in interface IMathAccentpublic final void setCharacter(char value)
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)
Example:IMathAccent accent = new MathematicalText("x").accent('~'); char ch = accent.getCharacter();
setCharacter in interface IMathAccentpublic final IMathElement[] getChildren()
Get children elements
getChildren in interface IMathElementgetChildren in class MathElementBaseIMathElementpublic final com.aspose.slides.OmmlControlCharacterPPTXUnsupportedProps getControlCharacterProperties()
Control Character Properties
Copyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.