Nevron.UI.WinForm.Controls Namespace / NDataGridView Class / RowsRemoved Event


RowsRemoved Event
Syntax
'Declaration
 
<SRCategoryAttribute("CatAction")>
<SRDescriptionAttribute("DataGridView_RowsRemovedDescr")>
Public Event RowsRemoved As System.Windows.Forms.DataGridViewRowsRemovedEventHandler
 
'Usage
 
Dim instance As NDataGridView
Dim handler As System.Windows.Forms.DataGridViewRowsRemovedEventHandler
 
AddHandler instance.RowsRemoved, handler
Event Data

The event handler receives an argument of type System.Windows.Forms.DataGridViewRowsRemovedEventArgs containing data related to this event. The following DataGridViewRowsRemovedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the number of rows that were deleted.  
Gets the zero-based index of the row deleted, or the first deleted row if multiple rows were deleted.  
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