Delphi This Is The DelphiVCL.Application.Minimize Method

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
This Is The DelphiVCL.Application.Minimize Method
By Muhammad Azizul Hakim October 22, 2021

Minimize or DelphiVCL.Application.Minimize method is used to shrink an application to the Windows taskbar.

Call Minimize to minimize the application. When the user minimizes the application, the Minimize method is automatically called.

Note: Don’t confuse the Minimize method, which minimizes an entire application, with minimizing a form or window. To minimize, maximize, or restore a window or form, change the value of its WindowState property.

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