RAD Studio What Is The Icon Property In DelphiVCL.Application?

FireWind

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

Icon or DelphiVCL.Application.Icon property is used to specify the icon that appears when the form is minimized.

Set the Icon property to provide an icon for the form. If Icon is not set, the system provides a default icon when the form is minimized.

How do we examine the available methods for the Application.Icon property?​

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