CopyTo

MathBlock.CopyTo method

Copiar a la matriz especificada.

public void CopyTo(IMathElement[] array, int arrayIndex)
ParámetroEscribeDescripción
arrayIMathElement[]Matriz a la que copiar.
arrayIndexInt32Í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