RemoveAt
MathParagraph.RemoveAt method
Elimina un elemento en el índice especificado de la colección.
public void RemoveAt(int index)
Parámetro | Escribe | Descripción |
---|---|---|
index | Int32 | El índice de base cero del elemento que se va a quitar. |
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.Add(block);
mathParagraph.RemoveAt(0);
Ver también
- class MathParagraph
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides