Back to Devexpress

XpoDataSource.Inserted Event

xpo-devexpress-dot-xpo-dot-xpodatasource-20b1baae.md

latest1.9 KB
Original Source

XpoDataSource.Inserted Event

Enables you to respond to inserting a persistent object via a bound data-aware control.

Namespace : DevExpress.Xpo

Assembly : DevExpress.Xpo.v25.2.dll

NuGet Package : DevExpress.Xpo

Declaration

csharp
public event XpoDataSourceInsertedEventHandler Inserted
vb
Public Event Inserted As XpoDataSourceInsertedEventHandler

Event Data

The Inserted event's data class is XpoDataSourceInsertedEventArgs. The following properties provide information specific to this event:

PropertyDescription
ValueProvides access to the persistent object that has been inserted in the XpoDataSource via a bound data-aware control.

Remarks

The Inserted event is raised after a persistent object being inserted via a data-aware control, bound to the current XpoDataSource, has been saved to a data store. This can be useful when you want to access the inserted object’s properties, such as XPObject.Oid. To access these properties, use the event’s XpoDataSourceInsertedEventArgs.Value parameter.

See Also

XpoDataSource Class

XpoDataSource Members

DevExpress.Xpo Namespace