Contains
IMathElementCollection.Contains method
确定集合是否包含特定值。
public bool Contains(IMathElement item)
范围 | 类型 | 描述 |
---|---|---|
item | IMathElement | 要在集合中定位的对象。 |
返回值
如果在集合中找到item则为真;否则为假。
例子
示例:
[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
collection.Add(plusElement);
collection.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
bool contains = collection.Contains(plusElement);
也可以看看
- interface IMathElement
- interface IMathElementCollection
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides