IndexOf

IMathBlockCollection.IndexOf method

确定集合中特定 IMathBlock 的索引。

public int IndexOf(IMathBlock item)
范围类型描述
itemIMathBlock要在集合中定位的项目。

返回值

item的索引(如果在集合中找到);否则,-1。

例子

示例:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Add(block);
int index = blockCollection.IndexOf(block);

也可以看看