What Is The ModalStarted Method In DelphiVCL.Application?
By Muhammad Azizul Hakim October 13, 2021
ModalStarted or DelphiVCL.Application.ModalStarted method is used to track the opening of the modal form.
Call ModalStarted to indicate that a modal form is being opened. ModalStarted is called by the ShowModal method of TCustomForm.
ModalStarted calls the OnModalStart event handler if defined.
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.ModalStarted using the print() command:
See the responses in our Windows command prompt:
By Muhammad Azizul Hakim October 13, 2021
ModalStarted or DelphiVCL.Application.ModalStarted method is used to track the opening of the modal form.
Call ModalStarted to indicate that a modal form is being opened. ModalStarted is called by the ShowModal method of TCustomForm.
ModalStarted calls the OnModalStart event handler if defined.
How to browse the properties and methods of the DelphiVCL.Application.ModalStarted?
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.ModalStarted using dir() command:
Python:
import DelphiVCL
dir(DelphiVCL.Application.ModalStarted)
You can also read short information about the DelphiVCL.Application.ModalStarted using the print() command:
Python:
print(DelphiVCL.Application.ModalStarted)
print(DelphiVCL.Application.ModalStarted.__doc__)