TextBox.GetEquationParagraph

GetEquationParagraph(int)

Get the specified math paragraph from the TextBody property of the TextBox object. Notice: (1) Returns NULL when the index is out of bounds or not found. (2) Also returns NULL if the specified index position is not a math paragraph.

public EquationNode GetEquationParagraph(int index)
ParameterTypeDescription
indexInt32The position index of the math paragraph, starting from 0.

Return Value

Returns the math paragraph specified by index.

See Also


GetEquationParagraph()

Gets the first math paragraph from the TextBody property of the TextBox object.

public EquationNode GetEquationParagraph()

Return Value

If there has math paragraph, returns the first one, otherwise returns null.

See Also