Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridView::Item Property (String^, Int32)

 

Provides an indexer to get or set the cell located at the intersection of the row with the specified index and the column with the specified name.

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

public:
[BrowsableAttribute(false)]
property DataGridViewCell^ default[
	String^ columnName,
	int rowIndex
] {
	DataGridViewCell^ get(String^ columnName, int rowIndex);
	void set(String^ columnName, int rowIndex, DataGridViewCell^ value);
}

Parameters

columnName
Type: System::String^

The name of the column containing the cell.

rowIndex
Type: System::Int32

The index of the row containing the cell.

Property Value

Type: System.Windows.Forms::DataGridViewCell^

The DataGridViewCell at the specified location.

This indexer is an alternative to accessing cells through the Cells collection of the Rows collection.

The following code example demonstrates the use of this indexer.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft