DataGridViewCellCollection::Item Property (Int32)

 

Gets or sets the cell at the provided index location. In C#, this property is the indexer for the DataGridViewCellCollection class.

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

public:
property DataGridViewCell^ default[
	int index
] {
	DataGridViewCell^ get(int index);
	void set(int index, DataGridViewCell^ value);
}

Parameters

index
Type: System::Int32

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

Property Value

Type: System.Windows.Forms::DataGridViewCell^

The DataGridViewCell stored at the given index.

Exception Condition
ArgumentNullException

The specified value when setting this property is null.

InvalidOperationException

The specified cell when setting this property already belongs to a DataGridView control.

-or-

The specified cell when setting this property already belongs to a DataGridViewRow.

ArgumentOutOfRangeException

index is less than 0.

-or-

index is equal to or greater than the number of cells in the collection.

.NET Framework
Available since 2.0
Return to top
Show: