Insert
MathBlock.Insert method
Вставляет MathElement в коллекцию по указанному индексу.
public void Insert(int index, IMathElement item)
Параметр | Тип | Описание |
---|---|---|
index | Int32 | Отсчитываемый от нуля индекс, в который следует вставить MathElement. |
item | IMathElement | MathElement для вставки. |
Примеры
Пример:
[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
mathBlock.Add(plusElement);
mathBlock.Insert(0, new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
Смотрите также
- interface IMathElement
- class MathBlock
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides