CopyTo

IMathElementCollection.CopyTo method

In angegebenes Array kopieren.

public void CopyTo(IMathElement[] array, int arrayIndex)
ParameterTypBeschreibung
arrayIMathElement[]Array, in das kopiert werden soll.
arrayIndexInt32Index, um mit dem Kopieren zu beginnen.

Beispiele

Beispiel:

[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
collection.Add(plusElement);
collection.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
IMathElement[] destinationArray = new IMathElement[collection.Count];
collection.CopyTo(destinationArray, 0);

Siehe auch