Delphi What Is The ModalStarted Method In DelphiVCL.Application?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
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.

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)
See the responses in our Windows command prompt:
1634108150245.png
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__)
See the responses in our Windows command prompt:
1634108177927.png