Learn About The Application’s InitInstance Method
By Muhammad Azizul Hakim September 22, 2021
InitInstance or DelphiVCL.Application.InitInstance method is used to initialize a newly allocated object instance to all zeros and initializes the instance’s virtual method table pointer.
InitInstance is not virtual, so you cannot override it. Instead, initialize any data for an object in the constructor.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.InitInstance using dir() command:
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.InitInstance using the print() command:
See the responses in our Windows command prompt:
By Muhammad Azizul Hakim September 22, 2021
InitInstance or DelphiVCL.Application.InitInstance method is used to initialize a newly allocated object instance to all zeros and initializes the instance’s virtual method table pointer.
How to use the InitInstance Method properly?
You should not call InitInstance directly. InitInstance is called by NewInstance when an object is created. When overriding NewInstance, be sure to call InitInstance as the last statement.InitInstance is not virtual, so you cannot override it. Instead, initialize any data for an object in the constructor.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.InitInstance using dir() command:
Python:
import DelphiVCL
dir(DelphiVCL.Application.InitInstance)
You can also read short information about the DelphiVCL.Application.InitInstance using the print() command:
Python:
print(DelphiVCL.Application.InitInstance)
print(DelphiVCL.Application.InitInstance.__doc__)