DomainUpDown::DomainUpDownItemCollection::Item Property (Int32)

 

Gets or sets the item at the specified indexed location in the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property Object^ default[
	int index
] {
	virtual Object^ get(int index) override;
	virtual void set(int index, Object^ value) override;
}

Parameters

index
Type: System::Int32

The indexed location of the item in the collection.

Property Value

Type: System::Object^

An Object that represents the item at the specified indexed location.

To assign items to a specific location, or to retrieve them from the DomainUpDown::DomainUpDownItemCollection, you can reference the collection object with a specific index value. The index value of the DomainUpDown::DomainUpDownItemCollection is a zero-based index.

.NET Framework
Available since 1.1
Return to top
Show: