ListView.ListViewItemCollection.IList.Add(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds an existing object to the collection.
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
Parameters
- item
- Object
The object to add to the collection.
Returns
The zero-based index indicating the location of the object if it was added to the collection; otherwise, -1.
Implements
Remarks
The item
parameter can be any type. If item
is a ListViewItem, it is added to the ListView.ListViewItemCollection. If item
is another type, a new ListViewItem is created containing the string from the ToString method of item
.