DataGridViewSelectedColumnCollection::Item Property (Int32)

 

Gets the column at the specified index.

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

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

Parameters

index
Type: System::Int32

The index of the DataGridViewColumn to get from the DataGridViewSelectedColumnCollection.

Property Value

Type: System.Windows.Forms::DataGridViewColumn^

The DataGridViewColumn at the specified index.

Exception Condition
ArgumentOutOfRangeException

index is less than 0.

-or-

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

.NET Framework
Available since 2.0
Return to top
Show: