DelphiDelphiVCLPythonPython GUIWindows

Create a Specific Component using delphivcl.CreateComponent

delphivcl.CreateComponent is a function to create a specified component. We call CreateComponent to create an instance of ComponentClass at the position specified by the Left and Top parameters with the size specified by the Width and Height parameters. The new component will be a child of the component specified by the Parent parameter. We can browse all the properties, methods, and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Image

DelphiVCL.Image or TImage displays a graphical image. Use TImage to display a graphical image on a form. Use the TPicture object in the Picture property to specify the actual bitmap, con, metafile, or other graphic object displayed by TImage. Properties and methods of TPicture can be used for such things as loading an image from a file, clearing the image in the TImage, and assigning an…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.CustomGrid

DelphiVCL.CustomGrid or TCustomGrid is the base type for all components that present information in a two-dimensional grid. Use TCustomGrid as a base class when defining components that represent information in a tabular format. TCustomGrid introduces properties and methods to control the appearance and behavior of the grid, including responses to mouse actions and user editing. Do…
Read more