CopyTo
MathBlock.CopyTo method
Копировать в указанный массив.
public void CopyTo(IMathElement[] array, int arrayIndex)
Параметр | Тип | Описание |
---|---|---|
array | IMathElement[] | Массив для копирования. |
arrayIndex | Int32 | Индекс для начала копирования. |
Примеры
Пример:
[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);
Смотрите также
- interface IMathElement
- class MathBlock
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides