DataGridViewComboBoxCell.ObjectCollection.Item[Int32] Property

Definition

Gets or sets the item at the current index location. In C#, this property is the indexer for the DataGridViewComboBoxCell.ObjectCollection class.

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public virtual object this[int index] { get; set; }
public virtual object? this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Overridable Property Item(index As Integer) As Object

Parameters

index
Int32

The zero-based index of the element to get or set.

Property Value

The Object stored at the given index.

Implements

Exceptions

index is less than 0 or greater than the number of items in the collection minus one.

The specified value when setting this property is null.

When setting this property, the cell's DataSource property value is not null.

When setting this property, the cell is in a shared row.

Applies to

See also