MathArray

MathArray(IMathElement)

创建一个数学数组并将指定元素放入其中

public MathArray(IMathElement element)
范围类型描述
elementIMathElement要放置在数组中的元素

例子

示例:

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

也可以看看


MathArray(IEnumerable<IMathElement>)

创建一个数学数组并在其中放置指定元素

public MathArray(IEnumerable<IMathElement> elements)
范围类型描述
elementsIEnumerable`1要放置在数组中的元素

也可以看看