DataGridViewRow::DataBoundItem Property

 

Gets the data-bound object that populated the row.

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

public:
[BrowsableAttribute(false)]
property Object^ DataBoundItem {
	Object^ get();
}

Property Value

Type: System::Object^

The data-bound Object.

Accessing data-bound objects directly through row objects is useful when you do not have direct access to the data source containing the objects. It is also convenient when you want to manipulate objects bound to selected rows or to rows passed as arguments to event handlers.

The following code example demonstrates how to use the DataBoundItem property to access a business object bound to a row. This code example is part of a larger example provided in How to: Access Objects Bound to Windows Forms DataGridView Rows.

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

.NET Framework
Available since 2.0
Return to top
Show: