DelphiDelphiVCLPythonPython GUIWindows

What Is The OnActionUpdate Event In DelphiVCL.Application?

DelphiVCLApplicationOnActionUpdate

In this post, we’ll use OnActionUpdate or DelphiVCL.Application.OnActionUpdate event occurs when an action’s Update method is called and its action list has not already handled it. Learning how to do it will allow you to easily build GUIs and test it with Python Testing Tools.

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:

See the responses in our Windows command prompt:

0dir 1721033

You can also read short information about the DelphiVCL.Application.OnActionUpdate using the print() command:

See the responses in our Windows command prompt:

0print 2860246

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Related posts
CodeIDELearn PythonPythonPython GUITkinter

How To Make More Than 20 ChatGPT Prompts Work With Python GUI Builders And Matplotlib Library?

CodeIDELearn PythonPythonPython GUITkinter

How To Make More Than 20 ChatGPT Prompts Work With Python GUI Builders And Pillow Library?

CodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How To Create A Weather App With The Python Delphi Ecosystem and Weatherstack API

CodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How To Create A Music Player With The Python Delphi Ecosystem

Leave a Reply

Your email address will not be published. Required fields are marked *