FractionEquationNode Class
Contents
[
Hide
]FractionEquationNode class
This class specifies the fraction equation, consisting of a numerator and denominator separated by a fraction bar. The fraction bar can be horizontal or diagonal, depending on the fraction properties. The fraction equation is also used to represent the stack function, which places one element above another, with no fraction bar.
type FractionEquationNode struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|---|
NewFractionEquationNode | Constructs from a parent object. |
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
GetFractionType | This specifies the type of fraction ; the default is ‘Bar’. |
SetFractionType | This specifies the type of fraction ; the default is ‘Bar’. |
Equals | Determine whether the current equation node is equal to the specified 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. |
GetType | Represents the type of the node. |
GetEquationType | Get the equation type of the current node |
FractionEquationNode_CreateNode | Create a node of the specified type. |