Insert
MathParagraph.Insert method
Inserta IMathBlock en la colección en el índice especificado.
public void Insert(int index, IMathBlock mathBlock)
Parámetro | Escribe | Descripción |
---|---|---|
index | Int32 | El índice de base cero en el que se debe insertar un elemento. |
mathBlock | IMathBlock | El IMathBlock para insertar. |
Ejemplos
Ejemplo:
[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
IMathBlock block = new MathBlock(new MathematicalText("y"));
mathParagraph.Insert(0, block);
Ver también
- interface IMathBlock
- class MathParagraph
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides