FlexGrid for WinForms
AfterAddRow Event



Fires after a new row is added by the user.
Syntax
'Declaration
 
<C1DescriptionAttribute("Fires after a new row is added by the user.")>
Public Event AfterAddRow As RowColEventHandler
'Usage
 
Dim instance As C1FlexGridBase
Dim handler As RowColEventHandler
 
AddHandler instance.AfterAddRow, handler
[C1Description("Fires after a new row is added by the user.")]
public event RowColEventHandler AfterAddRow
[C1Description("Fires after a new row is added by the user.")]
public:
event RowColEventHandler^ AfterAddRow
Remarks

This event only fires when AllowAddNew property is set to true and the user creates a new empty row by moving the cursor into the last row on the grid.

It does not fire when a new row is added to the grid programmatically or through the grid's data source.

You can use this event to initialize the new rows.

When a new row is created this way, it is initially empty, and the user may cancel the row by moving the cursor out of the new row before making any edits. In this case, the grid fires the CancelAddRow event and the new (empty) row is removed.

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

Reference

C1FlexGridBase Class
C1FlexGridBase Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback