DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Object or TObject

DelphiVCL.Object or TObject is the ultimate ancestor of all objects and components. DelphiVCL.Object encapsulates fundamental behavior common to objects by introducing methods that: Create, maintain, and destroy instances of the object by allocating, initializing, and freeing required memory. Respond when object instances are created or destroyed. Return class-type and instance…
Read more
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.LabeledEdit

DelphiVCL.LabeledEdit or TLabeledEdit is an edit control that has an associated label. Use TLabeledEdit to add an edit control with a label to a form. TLabeledEdit works with an associated label control, which is the value of its EditLabel property. The position of that label relative to the edit control is determined by the LabelPosition and LabelSpacing properties. Use the Text…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the delphivcl.Icon

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…
Read more