Remove
MathParagraph.Remove method
从集合中删除特定对象的第一个匹配项/>。
public bool Remove(IMathBlock mathBlock)
范围 | 类型 | 描述 |
---|---|---|
mathBlock | IMathBlock | 要从集合中删除的对象。 |
返回值
true 如果mathBlock从集合中成功删除;否则为假。 如果mathBlock在原始集合中找不到,则此方法也返回 false/>。
例子
示例:
[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
mathParagraph.Add(new MathBlock(new MathematicalText("x")));
IMathBlock block = new MathBlock(new MathematicalText("y"));
mathParagraph.Add(block);
mathParagraph.Remove(block);
也可以看看
- interface IMathBlock
- class MathParagraph
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides