CreateRow event
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
(Windows only; GUI for .NET)
The .NET event published when some user action initiates a create row operation in the bound .NET control (for example, clicking in a new empty row at the bottom of a control).
Access: PUBLIC
Applies to: Progress.Data.BindingSource class
Syntax
The delegate for this event defines the following event handler signature:
|
- EventHandlerName
- The name of the event handler.
- sender
- Object reference to the
BindingSourceobject instance that published the event. - args
- Object reference to a
CreateRowEventArgsobject instance containing arguments for the event.
When this event occurs, create a new record in the ABL data source object and the current result set. You can also set any initial values you want presented to the user.
If the record was successfully
created, set the Created property for the CreateRowEventArgs object
to TRUE (the default value). If the record was not successfully
created, set the Created property to FALSE.
Refresh( ) method as this
might produce unexpected results.See also
CancelCreateRow event, Created property, Progress.Data.CreateRowEventArgs class