CopyTo
IMathElementCollection.CopyTo method
In angegebenes Array kopieren.
public void CopyTo(IMathElement[] array, int arrayIndex)
Parameter | Typ | Beschreibung |
---|---|---|
array | IMathElement[] | Array, in das kopiert werden soll. |
arrayIndex | Int32 | Index, 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
- interface IMathElement
- interface IMathElementCollection
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides