RemoveAt
MathBlock.RemoveAt method
移除集合指定索引处的元素。
public void RemoveAt(int index)
范围 | 类型 | 描述 |
---|---|---|
index | Int32 | 要删除的元素的从零开始的索引。 |
例子
示例:
[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")));
mathBlock.RemoveAt(2);
也可以看看
- class MathBlock
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides