xpo-devexpress-dot-xpo-dot-session-b9ecb82e.md
Occurs after a list of tracked changes has been cleared.
Namespace : DevExpress.Xpo
Assembly : DevExpress.Xpo.v25.2.dll
NuGet Package : DevExpress.Xpo
public event SessionManipulationEventHandler AfterDropChanges
Public Event AfterDropChanges As SessionManipulationEventHandler
The AfterDropChanges event's data class is SessionManipulationEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Session | Gets the session currently being processed. |
This event is raised when a list of tracked changes has been cleared via the Session.DropChanges method call. The event parameter’s SessionManipulationEventArgs.Session property allows you to identify the currently used session.
When a list of tracked changes is about to be cleared, the Session.BeforeDropChanges event is raised.
See Also