'Declaration
<SRCategoryAttribute("CatAction")> <SRDescriptionAttribute("DataGridView_UserDeletingRowDescr")> Public Event UserDeletingRow As System.Windows.Forms.DataGridViewRowCancelEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewRowCancelEventHandler AddHandler instance.UserDeletingRow, handler
[SRCategory("CatAction")] [SRDescription("DataGridView_UserDeletingRowDescr")] public event System.Windows.Forms.DataGridViewRowCancelEventHandler UserDeletingRow
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewRowCancelEventArgs containing data related to this event. The following DataGridViewRowCancelEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Row | Gets the row that the user is deleting. |
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