'Declaration
<SRCategoryAttribute("CatData")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> <SRDescriptionAttribute("DataGridView_DefaultValuesNeededDescr")> Public Event DefaultValuesNeeded As System.Windows.Forms.DataGridViewRowEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewRowEventHandler AddHandler instance.DefaultValuesNeeded, handler
[SRCategory("CatData")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] [SRDescription("DataGridView_DefaultValuesNeededDescr")] public event System.Windows.Forms.DataGridViewRowEventHandler DefaultValuesNeeded
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewRowEventArgs containing data related to this event. The following DataGridViewRowEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Row | Gets the System.Windows.Forms.DataGridViewRow associated with the event. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also