CopyTo
MathBlock.CopyTo method
Copiar a la matriz especificada.
public void CopyTo(IMathElement[] array, int arrayIndex)
Parámetro | Escribe | Descripción |
---|---|---|
array | IMathElement[] | Matriz a la que copiar. |
arrayIndex | Int32 | Índice para comenzar a copiar. |
Ejemplos
Ejemplo:
[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);
Ver también
- interface IMathElement
- class MathBlock
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides