DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Abort Function

DelphiVCL.Abort function is used to raise a silent exception. We use Abort to escape from an execution path without reporting an error. Abort raises a special “silent exception” (EAbort), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block. Let’s browse all the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Browse All Available Functions in delphivcl.Bitmap

DelphiVCL.Bitmap is an encapsulation of a Windows bitmap (HBITMAP), including its palette (HPALETTE). A Bitmap is a powerful graphics object used to create, manipulate and store images in memory and as files on a disk. Bitmap contains an internal image of the bitmap graphic and automatically manages the realization of the palette when drawn. To draw a bitmap on a canvas, call…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Store And Manipulate Strings With DelphiVCL.Strings Or TStrings In Python

DelphiVCL.Strings or TStrings is the base class for objects that represent a list of strings. Use DelphiVCL.Strings or TStrings to store and manipulate a list of strings. Descendants of TStrings can represent several individual strings, such as the individual lines that appear in a list box. Some objects use descendants of TStrings to represent one long body of the text so that it…
Read more