Delphi What Is The HintShortCuts Property in DelphiVCL.Application?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Is The HintShortCuts Property in DelphiVCL.Application?
By Muhammad Azizul Hakim August 26, 2021

The HintShortCuts or DelphiVCL.Application.HintShortCuts property is used to specify whether the application’s pop-up Hints include shortcut information.

If HintShortCuts is True, the shortcut information is displayed.

For example, if HintShortCuts is True, the hint for the Cut command might be Cut (Ctrl+X) instead of Cut.

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

See the responses in our Windows command prompt​


1629970015948.png
You can also read short information about the DelphiVCL.Application.HintShortCuts using the print() command:
Python:
print(DelphiVCL.Application.HintShortCuts)
print(DelphiVCL.Application.HintShortCuts.__doc__)
See the responses in our Windows command prompt:
1629970047712.png