IListSource.ContainsListCollection 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示集合是否是 IList 对象的集合。
public:
property bool ContainsListCollection { bool get(); };
public bool ContainsListCollection { get; }
member this.ContainsListCollection : bool
Public ReadOnly Property ContainsListCollection As Boolean
属性值
如果集合是 IList 对象集合,则为 true
;否则,为 false
。
示例
下面的代码示例演示如何实现 IListSource 接口。 名为 的EmployeeListSource
组件通过从 方法返回false
指示它不包含 IList for 数据绑定。ContainsListCollection 有关完整代码列表,请参阅 如何:实现 IListSource 接口。
bool IListSource.ContainsListCollection
{
get { return false; }
}
Public ReadOnly Property ContainsListCollection() As Boolean Implements System.ComponentModel.IListSource.ContainsListCollection
Get
Return False
End Get
End Property
注解
在 中使用 DataSet 此属性将 true
返回 , DataSet 因为 类包含集合的集合。 在 中使用 DataTable 此属性将 false
返回, DataTable 因为 类包含 对象的集合。