MathArray

MathArray(IMathElement)

Creates a mathematical array and places the specified element in it

public MathArray(IMathElement element)
ParameterTypeDescription
elementIMathElementThe element to place in the array

Examples

Example:

[C#]
MathArray mathArray = new MathArray(new MathematicalText("item1"));

See Also


MathArray(IEnumerable<IMathElement>)

Creates a mathematical array and places specified elements in it

public MathArray(IEnumerable<IMathElement> elements)
ParameterTypeDescription
elementsIEnumerable`1Elements to place in the array

See Also