public interface IMathematicalText extends IMathElement
Mathematical text
Example:IMathematicalText mathText = new MathematicalText("x+y");
Modifier and Type | Method and Description |
---|---|
IPortionFormat |
getFormat()
Text formatting properties
|
java.lang.String |
getValue()
Text value
|
void |
setValue(java.lang.String value)
Text value
|
accent, 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, underbar
java.lang.String getValue()
Text value
Example:IMathematicalText mathText = new MathematicalText("x+y"); String textValue = mathText.getValue();
void setValue(java.lang.String value)
Text value
Example:IMathematicalText mathText = new MathematicalText("x+y"); String textValue = mathText.getValue();
IPortionFormat getFormat()
Text formatting properties
Example:IMathematicalText mathText = new MathematicalText("x+y"); mathText.getFormat().setFontHeight(28);