DataGridView::RowValidated Event

 

Occurs after a row has finished validating.

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

public:
event DataGridViewCellEventHandler^ RowValidated {
	void add(DataGridViewCellEventHandler^ value);
	void remove(DataGridViewCellEventHandler^ value);
}

This event is analogous to the Validated event. Use this event to perform post-processing on a row of values.

For more information about handling events, see NIB: Consuming Events.

The following code sample uses this event to clear up any error annotations that may have been left behind after validating the row.

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

.NET Framework
Available since 2.0
Return to top
Show: