Delphi What Does EnumAllWindowsOnActivateHint Do?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Does EnumAllWindowsOnActivateHint Do?
By Muhammad Azizul Hakim July 15, 2021

The EnumAllWindowsOnActivateHint property or DelphiVCL.Application.EnumAllWindowsOnActivateHint is a Boolean variable used for hint displaying.

EnumAllWindowsOnActivateHint is used internally by VCL for hint displaying. Do not use it directly.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.EnumAllWindowsOnActivateHint using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.EnumAllWindowsOnActivateHint)

Here’s the output from that code​


1626332189073.png
You can also read short information about the DelphiVCL.Application.EnumAllWindowsOnActivateHint using the print() command:
Python:
print(DelphiVCL.Application.EnumAllWindowsOnActivateHint)
print(DelphiVCL.Application.EnumAllWindowsOnActivateHint.__doc__)

See the responses in the Windows command prompt​

1626332221891.png