NaryEquationNode Class
Contents
[
Hide
]NaryEquationNode class
This class specifies an n-ary operator equation consisting of an n-ary operator, a base (or operand), and optional upper and lower bounds.
type NaryEquationNode struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|---|
NewNaryEquationNode | Constructs from a parent object. |
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
IsHideSubscript | Whether to display the lower bound |
SetIsHideSubscript | Whether to display the lower bound |
IsHideSuperscript | Whether to display the upper bound |
SetIsHideSuperscript | Whether to display the upper bound |
GetLimitLocation | This attribute specifies the location of limits in n-ary operators. Limits can be either centered above and below the n-ary operator, or positioned just to the right of the operator. |
SetLimitLocation | This attribute specifies the location of limits in n-ary operators. Limits can be either centered above and below the n-ary operator, or positioned just to the right of the operator. |
GetNaryOperator | an n-ary operator.e.g “∑”.It is strongly recommended to use attribute NaryOperatorType to set n-ary operator.Use this property setting if you cannot find the character you need in a known type. |
SetNaryOperator | an n-ary operator.e.g “∑”.It is strongly recommended to use attribute NaryOperatorType to set n-ary operator.Use this property setting if you cannot find the character you need in a known type. |
GetNaryOperatorType | an n-ary operator.e.g “∑” |
SetNaryOperatorType | an n-ary operator.e.g “∑” |
GetNaryGrow | This attribute specifies the growth property of n-ary operators at the document level. When off, n-ary operators such as integrals and summations do not grow to match the size of their operand height. When on, the n-ary operator grows vertically to match its operand height. |
SetNaryGrow | This attribute specifies the growth property of n-ary operators at the document level. When off, n-ary operators such as integrals and summations do not grow to match the size of their operand height. When on, the n-ary operator grows vertically to match its operand height. |
Equals | Determine whether the current equation node is equal to the specified node |
GetStartIndex | Gets the start index of the characters. |
GetLength | Gets the length of the characters. |
GetFont | Returns the font of this object. |
SetWordArtStyle | Sets the preset WordArt style. |
GetTextOptions | Returns the text options. |
GetType | Gets the type of text node. |
GetParentNode | Specifies the parent node of the current node |
SetParentNode | Specifies the parent node of the current node |
ToLaTeX | Convert this equtation to LaTeX expression. |
ToMathML | Convert this equtation to MathML expression. |
AddChild_EquationNodeType | Insert a node of the specified type at the end of the child node list of the current node. |
AddChild_EquationNode | Inserts the specified node at the end of the current node’s list of child nodes. |
InsertChild | Inserts a node of the specified type at the specified index position in the current node’s child node list. |
InsertAfter | Inserts the specified node after the current node. |
InsertBefore | Inserts the specified node before the current node. |
GetChild | Returns the node at the specified index among the children of the current node. |
Remove | Removes itself from the parent. |
RemoveChild_EquationNode | Removes the specified node from the current node’s children. |
RemoveChild_Int | Removes the node at the specified index from the current node’s children. |
RemoveAllChildren | Removes all the child nodes of the current node. |
GetEquationType | Get the equation type of the current node |
NaryEquationNode_CreateNode | Create a node of the specified type. |