TreeNodeCollection.IList.Contains(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的树节点是否为集合的成员。
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
不是 , TreeNode则 IList.Contains 方法返回 false
。 因此,不能传入字符串来确定集合是否包含以字符串值作为其 Text 属性的节点。