ListBox.ObjectCollection.IList.Add(Object) 方法

定义

将对象添加到 ListBox 类中。

此 API 支持产品基础结构,不能在代码中直接使用。

 virtual int System.Collections.IList.Add(System::Object ^ item) = System::Collections::IList::Add;
int IList.Add (object item);
int IList.Add (object? item);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (item As Object) As Integer Implements IList.Add

参数

item
Object

要添加到 ListBox 的对象。

返回

Int32

新元素插入到的位置;或者为 -1,指示该项未插入到集合中。

实现

例外

itemnull

当前 ListBox 有数据源。

没有足够的可用空间来存储新项。

注解

此成员是显式接口成员的实现。 它只能在 ListBox.ObjectCollection 实例被强制转换为 IList 接口时使用。

适用于