Arguments

MathArray.Arguments property

The set of items of the array

public IMathElementCollection Arguments { get; }

Examples

Example:

[C#]
IMathArray mathArray = new MathArray(new MathematicalText("item1"));
mathArray.Arguments.Add(new MathematicalText("item2"));

See Also