IndexOf
MathBlock.IndexOf method
确定集合中特定数学元素的索引。
public int IndexOf(IMathElement item)
范围 | 类型 | 描述 |
---|---|---|
item | IMathElement | 要在集合中定位的元素。 |
返回值
item的索引(如果在集合中找到);否则,-1。
例子
示例:
[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
mathBlock.Add(plusElement);
mathBlock.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
int index = mathBlock.IndexOf(plusElement);
也可以看看
- interface IMathElement
- class MathBlock
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides