DelphiDelphiVCLPythonPython GUIWindows

What is Active Property in delphivcl.Application?

Active property or DelphiVCL.Application.Active is used to specify whether the application is active and has focus. Active is true while the application is active and false if it is not. Active is set to true in the constructor. An application is active if the form or application has focus. An application becomes inactive when a window from a different application is about to become…
Read more
DelphiDelphiVCLPythonPython GUIWindows

API Categories Index 2: Learn about All Routines and Classes Included in the RTL

The Delphi Run-Time Library (or RTL) is composed of a number of base units that provide the underlying support for most of the VCL component libraries. The RTL includes global routines, utility classes such as those that represent streams and lists, and classes such as TObject, TPersistent, and TComponent. This section lists all routines and classes included in the RTL, split by categories.
Read more
DelphiDelphiVCLPythonPython GUIWindows

Numeric Types Emulators Inside DelphiVCL4Python Library

In DelphiVCL Library or Python in general, the following methods can be defined to emulate numeric objects. Methods corresponding to operations that are not supported by the particular kind of number implemented (e.g., bitwise operations for non-integral numbers) should be left undefined. object.__add__(self, other) object.__sub__(self, other) object.__mul__(self…
Read more