CopyTo
MathBlock.CopyTo method
Copier dans le tableau spécifié.
public void CopyTo(IMathElement[] array, int arrayIndex)
Paramètre | Taper | La description |
---|---|---|
array | IMathElement[] | Tableau vers lequel copier. |
arrayIndex | Int32 | Index pour commencer la copie. |
Exemples
Exemple :
[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
mathBlock.Add(plusElement);
mathBlock.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
IMathElement[] destinationArray = new IMathElement[mathBlock.Count];
mathBlock.CopyTo(destinationArray, 0);
Voir également
- interface IMathElement
- class MathBlock
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides