MatrixEquationNode Class

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

MethodDescription
NewMatrixEquationNodeConstructs from a parent object.

Methods

MethodDescription
IsNullChecks whether the implementation object is nullptr.
GetBaseJcThis 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.
SetBaseJcThis 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.
IsHidePlaceholderThis 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.
SetIsHidePlaceholderThis 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.
EqualsDetermine whether the current equation node is equal to the specified node
GetParentNodeSpecifies the parent node of the current node
SetParentNodeSpecifies the parent node of the current node
ToLaTeXConvert this equtation to LaTeX expression.
ToMathMLConvert this equtation to MathML expression.
AddChild_EquationNodeTypeInsert a node of the specified type at the end of the child node list of the current node.
AddChild_EquationNodeInserts the specified node at the end of the current node’s list of child nodes.
InsertChildInserts a node of the specified type at the specified index position in the current node’s child node list.
InsertAfterInserts the specified node after the current node.
InsertBeforeInserts the specified node before the current node.
GetChildReturns the node at the specified index among the children of the current node.
RemoveRemoves itself from the parent.
RemoveChild_EquationNodeRemoves the specified node from the current node’s children.
RemoveChild_IntRemoves the node at the specified index from the current node’s children.
RemoveAllChildrenRemoves all the child nodes of the current node.
GetTypeRepresents the type of the node.
GetEquationTypeGet the equation type of the current node
MatrixEquationNode_CreateNodeCreate a node of the specified type.