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.
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.Icon using the print() command:
See the responses in our Windows command prompt:
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)
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__)