Delphi What is DelphiVCL.Application.DesignInfo?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What is DelphiVCL.Application.DesignInfo?
By Muhammad Azizul Hakim July 7, 2021

The DesignInfo property or DelphiVCL.Application.DesignInfo contains information used by the Form designer.

DesignInfo is used internally. Do not use this property in applications.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.DesignInfo using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.DesignInfo)
See the responses in our Windows command prompt:
1625688294259.png
You can also read short information about the DelphiVCL.Application.DesignInfo using the print() command:
Python:
print(DelphiVCL.Application.DesignInfo)
print(DelphiVCL.Application.DesignInfo.__doc__)
See the responses in our Windows command prompt:
1625688335167.png