Skip to main content
A newer version of this page is available. .

IObjectSpace.ObjectReloaded Event

Occurs after an object has been reloaded from the database.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

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

If you implement the IObjectSpace interface in the BaseObjectSpace class’ descendant, you don’t have to declare this event. It’s declared within the BaseObjectSpace class. The BaseObjectSpace.OnObjectReloaded method raises this event. So, you should only invoke the OnObjectReloaded method in your descendant.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ObjectReloaded event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also