public interface IMathNaryOperatorProperties
Specifies properties of IMathNaryOperator
Modifier and Type | Method and Description |
---|---|
boolean |
getGrowToMatchOperandHeight()
Operator Character grows vertically to match its operand height
|
boolean |
getHideSubscript()
Hide Subscript
|
boolean |
getHideSuperscript()
Hide Superscript
|
int |
getLimitLocation()
The location of limits (subscript and superscript)
|
char |
getOperator()
Nary Operator Character
For example: '∑', '∫'
|
void |
setGrowToMatchOperandHeight(boolean value)
Operator Character grows vertically to match its operand height
|
void |
setHideSubscript(boolean value)
Hide Subscript
|
void |
setHideSuperscript(boolean value)
Hide Superscript
|
void |
setLimitLocation(int value)
The location of limits (subscript and superscript)
|
void |
setOperator(char value)
Nary Operator Character
For example: '∑', '∫'
|
char getOperator()
Nary Operator Character For example: '∑', '∫'
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); char operatorSymbol = naryOperator.getOperator();
void setOperator(char value)
Nary Operator Character For example: '∑', '∫'
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); char operatorSymbol = naryOperator.getOperator();
int getLimitLocation()
The location of limits (subscript and superscript)
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setLimitLocation(MathLimitLocations.SubscriptSuperscript);
void setLimitLocation(int value)
The location of limits (subscript and superscript)
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setLimitLocation(MathLimitLocations.SubscriptSuperscript);
boolean getGrowToMatchOperandHeight()
Operator Character grows vertically to match its operand height
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setGrowToMatchOperandHeight(true);
void setGrowToMatchOperandHeight(boolean value)
Operator Character grows vertically to match its operand height
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setGrowToMatchOperandHeight(true);
boolean getHideSubscript()
Hide Subscript
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setHideSubscript(true);
void setHideSubscript(boolean value)
Hide Subscript
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setHideSubscript(true);
boolean getHideSuperscript()
Hide Superscript
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setHideSuperscript(true);
void setHideSuperscript(boolean value)
Hide Superscript
Example:IMathNaryOperator naryOperator = new MathematicalText("x").nary(MathNaryOperatorTypes.Summation, "x=1", "100"); naryOperator.setHideSuperscript(true);