BaseObjectSpace.ObjectReloaded Event
In This Article
Occurs after an object has been reloaded from the database.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
public event EventHandler<ObjectManipulatingEventArgs> ObjectReloaded
#Event Data
The ObjectReloaded event's data class is ObjectManipulatingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Object | Provides access to the object that is being manipulated. |
#Remarks
This event is supposed to be raised by the BaseObjectSpace class’ descendants. Generally, you do not need to handle this event, since it is intended for internal use.
#Implements
See Also