[]
        
(Showing Draft Content)

C1.Win.FlexGrid.C1FlexGridBase.AfterAddRow

AfterAddRow Event

Fires after a new row is added by the user.

Namespace: C1.Win.FlexGrid
Assembly: C1.Win.FlexGrid.8.dll
Syntax
public event RowColEventHandler AfterAddRow
Returns
Type Description
RowColEventHandler Fires after a new row is added by the user.
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.