TreeNodeCollection.IList.Contains(Object) 方法

定义

确定指定的树节点是否为集合的成员。

 virtual bool System.Collections.IList.Contains(System::Object ^ node) = System::Collections::IList::Contains;
bool IList.Contains (object node);
bool IList.Contains (object? node);
abstract member System.Collections.IList.Contains : obj -> bool
override this.System.Collections.IList.Contains : obj -> bool
Function Contains (node As Object) As Boolean Implements IList.Contains

参数

node
Object

要在集合中查找的对象。

返回

如果 node 是该集合的成员,则为 true;否则为 false

实现

注解

如果 node 不是 , TreeNodeIList.Contains 方法返回 false。 因此,不能传入字符串来确定集合是否包含以字符串值作为其 Text 属性的节点。

适用于