MatrixEquationNode Class
Contents
[
Hide
]MatrixEquationNode class
This class specifies the Matrix equation, consisting of one or more elements laid out in one or more rows and one or more columns.
type MatrixEquationNode struct {
ptr unsafe.Pointer
}
Constructors
| Method | Description |
|---|---|
| NewMatrixEquationNode | Constructs from a parent object. |
Methods
| Method | Description |
|---|---|
| IsNull | Checks whether the implementation object is nullptr. |
| GetBaseJc | This attribute specifies the justification of the matrix. Text outside of the matrix can be aligned with the bottom, top, or center of a matrix function. Default, the matrix assumes center justification. |
| SetBaseJc | This attribute specifies the justification of the matrix. Text outside of the matrix can be aligned with the bottom, top, or center of a matrix function. Default, the matrix assumes center justification. |
| IsHidePlaceholder | This attribute specifies the Hide Placeholders property on a matrix. When this property is on, placeholders do not appear in the matrix.Default, placeholders do appear such that the locations where text can be inserted are made visible. |
| SetIsHidePlaceholder | This attribute specifies the Hide Placeholders property on a matrix. When this property is on, placeholders do not appear in the matrix.Default, placeholders do appear such that the locations where text can be inserted are made visible. |
| 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 |
| MatrixEquationNode_CreateNode | Create a node of the specified type. |