Delphi What Is The OnActionUpdate Event In DelphiVCL.Application?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Is The OnActionUpdate Event In DelphiVCL.Application?
By Muhammad Azizul Hakim December 10, 2021

OnActionUpdate or DelphiVCL.Application.OnActionUpdate event occurs when an action’s Update method is called and its action list has not already handled it.

Use the OnActionUpdate event handler to update the properties of an action when the application is idle if the action’s action list does not handle it in an OnUpdate event handler.

If the action list that contains the action does not update it in an OnUpdate event handler, the action is routed to the application object’s UpdateAction method, which invokes the OnActionUpdate event handler (the application’s UpdateAction method applies to all actions in the application).

What does the “handled” parameter do?​

The Handled parameter of the event handler returns false by default. If the handler updates the event, it should set Handled to true, ending the action’s processing. The action’s OnUpdate event occurs when the event handler exits with Handled set to false. If the action is not updated after that, the active control’s UpdateAction method is called to allow the target to update the action. Finally, the active form’s UpdateAction method is called if all other handlers do not handle the action.

Note: OnActionUpdate occurs after the application’s OnIdle event.

Note: You can also respond to this event using the TApplicationEvents component, which allows you to assign an event handler using the IDE.

Let’s browse all the properties and methods of the DelphiVCL.Application.OnActionUpdate using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.OnActionUpdate)
See the responses in our Windows command prompt:
1639127764485.png
You can also read short information about the DelphiVCL.Application.OnActionUpdate using the print() command:
Python:
print(DelphiVCL.Application.OnActionUpdate)
print(DelphiVCL.Application.OnActionUpdate.__doc__)
See the responses in our Windows command prompt:
1639127791655.png