GroupCharacterEquationNode

GroupCharacterEquationNode class

This class specifies the Group-Character function, consisting of a character drawn above or below text, often with the purpose of visually grouping items.

class GroupCharacterEquationNode extends EquationNode;

Constructors

NameDescription
constructor(EquationNode)Constructs from a parent object convertible to this.

Methods

MethodDescription
getGroupChr()Specifies a symbol(default U+23DF). It is strongly recommended to use attribute ChrType to set accent character. Use this property setting if you cannot find the character you need in a known type.
setGroupChr(string)Specifies a symbol(default U+23DF). It is strongly recommended to use attribute ChrType to set accent character. Use this property setting if you cannot find the character you need in a known type.
getChrType()Specify combining characters by type value.
setChrType(EquationCombiningCharacterType)Specify combining characters by type value.
getPosition()This attribute specifies the position of the character in the object
setPosition(EquationCharacterPositionType)This attribute specifies the position of the character in the object
getVertJc()This attribute, combined with pos of groupChrPr, specifies the vertical layout of the groupChr object. Where pos specifies the position of the grouping character, vertJc specifies the alignment of the object with respect to the baseline.
setVertJc(EquationCharacterPositionType)This attribute, combined with pos of groupChrPr, specifies the vertical layout of the groupChr object. Where pos specifies the position of the grouping character, vertJc specifies the alignment of the object with respect to the baseline.
getStartIndex()Gets the start index of the characters.
getLength()Gets the length of the characters.
getFont()Returns the font of this object.
getTextOptions()Returns the text options.
setWordArtStyle(PresetWordArtStyle)Sets the preset WordArt style.
getParentNode()Specifies the parent node of the current node
setParentNode(EquationNode)Specifies the parent node of the current node
getType()Represents the type of the node.
getEquationType()Get the equation type of the current node
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(number, EquationNodeType)Inserts a node of the specified type at the specified index position in the current node’s child node list.
insertAfter(EquationNodeType)Inserts the specified node after the current node.
insertBefore(EquationNodeType)Inserts the specified node before the current node.
getChild(number)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(number)Removes the node at the specified index from the current node’s children.
removeAllChildren()Removes all the child nodes of the current node.
static createNode(EquationNodeType, Workbook, EquationNode)Create a node of the specified type.

constructor(EquationNode)

Constructs from a parent object convertible to this.

constructor(obj: EquationNode);

Parameters:

ParameterTypeDescription
objEquationNodeThe parent object.

getGroupChr()

Specifies a symbol(default U+23DF). It is strongly recommended to use attribute ChrType to set accent character. Use this property setting if you cannot find the character you need in a known type.

getGroupChr() : string;

Remarks

It should be noted that this property only accepts one character, and if multiple characters are passed in, only the first character is accepted.

setGroupChr(string)

Specifies a symbol(default U+23DF). It is strongly recommended to use attribute ChrType to set accent character. Use this property setting if you cannot find the character you need in a known type.

setGroupChr(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

Remarks

It should be noted that this property only accepts one character, and if multiple characters are passed in, only the first character is accepted.

getChrType()

Specify combining characters by type value.

getChrType() : EquationCombiningCharacterType;

Returns

EquationCombiningCharacterType

setChrType(EquationCombiningCharacterType)

Specify combining characters by type value.

setChrType(value: EquationCombiningCharacterType) : void;

Parameters:

ParameterTypeDescription
valueEquationCombiningCharacterTypeThe value to set.

getPosition()

This attribute specifies the position of the character in the object

getPosition() : EquationCharacterPositionType;

Returns

EquationCharacterPositionType

setPosition(EquationCharacterPositionType)

This attribute specifies the position of the character in the object

setPosition(value: EquationCharacterPositionType) : void;

Parameters:

ParameterTypeDescription
valueEquationCharacterPositionTypeThe value to set.

getVertJc()

This attribute, combined with pos of groupChrPr, specifies the vertical layout of the groupChr object. Where pos specifies the position of the grouping character, vertJc specifies the alignment of the object with respect to the baseline.

getVertJc() : EquationCharacterPositionType;

Returns

EquationCharacterPositionType

setVertJc(EquationCharacterPositionType)

This attribute, combined with pos of groupChrPr, specifies the vertical layout of the groupChr object. Where pos specifies the position of the grouping character, vertJc specifies the alignment of the object with respect to the baseline.

setVertJc(value: EquationCharacterPositionType) : void;

Parameters:

ParameterTypeDescription
valueEquationCharacterPositionTypeThe value to set.

getStartIndex()

Gets the start index of the characters.

getStartIndex() : number;

getLength()

Gets the length of the characters.

getLength() : number;

getFont()

Returns the font of this object.

getFont() : Font;

Returns

Font

getTextOptions()

Returns the text options.

getTextOptions() : TextOptions;

Returns

TextOptions

setWordArtStyle(PresetWordArtStyle)

Sets the preset WordArt style.

setWordArtStyle(style: PresetWordArtStyle) : void;

Parameters:

ParameterTypeDescription
stylePresetWordArtStyleThe preset WordArt style.

Remarks

Only for the text of shape/chart.

getParentNode()

Specifies the parent node of the current node

getParentNode() : EquationNode;

Returns

EquationNode

setParentNode(EquationNode)

Specifies the parent node of the current node

setParentNode(value: EquationNode) : void;

Parameters:

ParameterTypeDescription
valueEquationNodeThe value to set.

getType()

Represents the type of the node.

getType() : TextNodeType;

Returns

TextNodeType

getEquationType()

Get the equation type of the current node

getEquationType() : EquationNodeType;

Returns

EquationNodeType

addChild(EquationNodeType)

Insert a node of the specified type at the end of the child node list of the current node.

addChild(equationType: EquationNodeType) : EquationNode;

Parameters:

ParameterTypeDescription
equationTypeEquationNodeTypeTypes of Equation Nodes

Returns

If the specified type exists, the corresponding node is returned, and if the type does not exist, a node of unknown type is returned.

addChild(EquationNode)

Inserts the specified node at the end of the current node’s list of child nodes.

addChild(node: EquationNode) : void;

Parameters:

ParameterTypeDescription
nodeEquationNodeThe specified node

insertChild(number, EquationNodeType)

Inserts a node of the specified type at the specified index position in the current node’s child node list.

insertChild(index: number, equationType: EquationNodeType) : EquationNode;

Parameters:

ParameterTypeDescription
indexnumberindex value
equationTypeEquationNodeTypeTypes of Equation Nodes

Returns

If the specified type exists, the corresponding node is returned, and if the type does not exist, a node of unknown type is returned.

insertAfter(EquationNodeType)

Inserts the specified node after the current node.

insertAfter(equationType: EquationNodeType) : EquationNode;

Parameters:

ParameterTypeDescription
equationTypeEquationNodeTypeTypes of Equation Nodes

Returns

If the specified type exists, the corresponding node is returned, and if the type does not exist, a node of unknown type is returned.

insertBefore(EquationNodeType)

Inserts the specified node before the current node.

insertBefore(equationType: EquationNodeType) : EquationNode;

Parameters:

ParameterTypeDescription
equationTypeEquationNodeTypeTypes of Equation Nodes

Returns

If the specified type exists, the corresponding node is returned, and if the type does not exist, a node of unknown type is returned.

getChild(number)

Returns the node at the specified index among the children of the current node.

getChild(index: number) : EquationNode;

Parameters:

ParameterTypeDescription
indexnumberIndex of the node

Returns

Returns the corresponding node if the specified node exists, otherwise returns null.

remove()

Removes itself from the parent.

remove() : void;

removeChild(EquationNode)

Removes the specified node from the current node’s children.

removeChild(node: EquationNode) : void;

Parameters:

ParameterTypeDescription
nodeEquationNodeNode to be deleted.

removeChild(number)

Removes the node at the specified index from the current node’s children.

removeChild(index: number) : void;

Parameters:

ParameterTypeDescription
indexnumberIndex of the node

removeAllChildren()

Removes all the child nodes of the current node.

removeAllChildren() : void;

createNode(EquationNodeType, Workbook, EquationNode)

Create a node of the specified type.

static createNode(equationType: EquationNodeType, workbook: Workbook, parent: EquationNode) : EquationNode;

Parameters:

ParameterTypeDescription
equationTypeEquationNodeTypeTypes of Equation Nodes
workbookWorkbookThe workbook object associated with the equation
parentEquationNodeThe parent node where this node is located

Returns

If the specified type exists, the corresponding node is returned, and if the type does not exist, a node of unknown type is returned.