Site icon Python GUI

What Is A DelphiVCL.PaintBox And How Does It Work?

What Is A DelphiVCLPaintBox And How Does It Work

DelphiVCL.PaintBox or TPaintBox provides a canvas that applications can use for rendering an image when you develop Windows software.

We can use TPaintBox to add custom images to a form. Unlike TImage, which displays an image that is stored in a bitmap, icon, or metafile, TPaintBox requires an application to draw the image directly on a canvas. Use the OnPaint event handler to draw on the paint box’s Canvas, the drawing surface of the paint box.

Let’s browse all the properties and methods of the DelphiVCL.PaintBox using dir() command:

[crayon-662e7a1e538cc796455832/]

See the responses in our Windows command prompt:

You can also read short information about the DelphiVCL.PaintBox using the print() command:

[crayon-662e7a1e538da895680723/]

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