Site icon Python GUI

How to use the DelphiVCL.Icon

featuredimage2 4

DelphiVCL.Icon or TIcon is an encapsulation of a Windows icon.

Use TIcon to represent one of the icons in an image list. Assign an icon to objects that have an Icon property, such as TForm or TPicture.

Icon objects represent the value loaded from a Windows icon file (.ICO file). Draw an icon on a canvas, using the Draw method of the TCanvas object. Icons do not stretch, so do not use StretchDraw (TCanvas) with an icon.

Note: TIcon can be used to display the value of a multi-resolution (> 16 colors) icon. However, it can not support the creation of multi-resolution icons, nor the resizing of the image after it is loaded from a file or stream.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Icon using dir() command:

[crayon-662e933779aaf749697668/]

See the responses in our Windows command prompt:

You can also read short informations about the DelphiVCL.Icon using the print() command:

[crayon-662e933779ab9019643293/]

See the responses in our Windows command prompt:

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Exit mobile version