Skip to main content
.NET 6.0+

BaseObjectSpace.ModifiedChanged Event

Occurs when the current Object Space’s BaseObjectSpace.IsModified state is changed.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler ModifiedChanged

Event Data

The ModifiedChanged event's data class is EventArgs.

Remarks

An Object Space is considered modified when at least one persistent object belonging to it is changed (created, modified or deleted). This state is in effect until the BaseObjectSpace.CommitChanges method is called. The BaseObjectSpace.IsModified property specifies whether the Object Space is modified. After its value is changed, the ModifiedChanged event is raised. Handle this event to execute custom code.

Implements

See Also