DataGridViewSelectedCellCollection::Item Property (Int32)

 

Gets the cell at the specified index.

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

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

Parameters

index
Type: System::Int32

The index of the DataGridViewCell to get from the DataGridViewSelectedCellCollection.

Property Value

Type: System.Windows.Forms::DataGridViewCell^

The DataGridViewCell at the specified index.

Exception Condition
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: