ActionBase.Changed Event
Occurs after one of the current ActionBase object’s properties has been changed.
Namespace: DevExpress.ExpressApp.Actions
Assembly: DevExpress.ExpressApp.v25.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Event Data
The Changed event's data class is DevExpress.ExpressApp.Actions.ActionChangedEventArgs.
Remarks
Use the event handler’s ActionChangedEventArgs.ChangedPropertyType parameter to indicate what property has been changed. This parameter can have the following values:
| Parameter Value | Property Changed |
|---|---|
| Caption | ActionBase.Caption or ParametrizedAction.ShortCaption |
| Image | ActionBase.ImageName |
| Enabled | ActionBase.Enabled |
| Active | ActionBase.Active |
| ToolTip | ActionBase.ToolTip |
| ConfirmationMessage | ActionBase.ConfirmationMessage |
| TargetObjectsCriteria | ActionBase.TargetObjectsCriteria |
| TargetObjectsCriteriaMode | ActionBase.TargetObjectsCriteria |
See Also