DelphiDelphiVCLPythonPython GUIWindows

What is the ClassNameIs Method in DelphiVCL.Application?

The ClassNameIs method or DelphiVCL.Application.ClassNameIs is used to determine whether an object is of a specific type when you develop windows software. ClassNameIs determines whether an object instance or class reference has a class name that matches a specified string. This is useful to query objects across modules or shared libraries. Let’s browse all the properties, methods, and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Are Bi-Directional Properties In DelphiVCL Applications?

What is Bi-Directional (BiDi)? Some languages do not follow the left to right reading order commonly found in Western languages, but rather use the right to left reading order for words and the left to right reading order for numbers. These languages are termed bi-directional (BiDi) because of this separation. The most common bi-directional languages are Arabic and Hebrew, although other Middle…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is How The OnGetMainFormHandle Event Works

For development on Windows OnGetMainFormHandle or DelphiVCL.Application.OnGetMainFormHandle is the event triggered when reading the value of the MainFormHandle property. Let’s take a look at all of DelphiVCL.Application.OnGetMainFormHandle properties and methods: import DelphiVCL dir(DelphiVCL.Application.OnGetMainFormHandle) See the responses in our Windows command…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The Observers Property

In windows app development, the Observers or DelphiVCL.Application.Observers property indicates the TObservers object added to the TComponent. Observers is a read-only property that returns the TObservers added to the TComponent, in order to use the notifications provided by the observers either with LiveBindings or for the developers’ own purposes. Let’s browse all the properties…
Read more