public interface IMathAccent extends IMathElement
Specifies the accent function, consisting of a base and a combining diacritical mark Example: 𝑎́
Example:IMathAccent accent = new MathematicalText("x").accent('~');
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)
|
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, getChildren, 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, underbar
IMathElement getBase()
The argument to which the accent was applied
Example:IMathAccent accent = new MathematicalText("x").accent('~'); IMathElement base = accent.getBase();
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();
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();