'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
[SRCategory("CatAction")] [SRDescription("DataGridView_RowsRemovedDescr")] public event System.Windows.Forms.DataGridViewRowsRemovedEventHandler RowsRemoved
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.
Property | Description |
---|---|
RowCount | Gets the number of rows that were deleted. |
RowIndex | 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