In this post, you’ll learn more about HintMouseMessage or DelphiVCL.Application.HintMouseMessage method regulates the display of hint windows. This method is called automatically when the mouse passes over control with a Hint. Applications rarely, if ever, call HintMouseMessage directly. HintMouseMessage is used internally to manage the display of the hint windows.
You can use Python testing tools to see if the HintMouseMessage method works.
Table of Contents
How can I examine the properties and methods of DelphiVCL.Application.HintMouseMessage?
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.HintMouseMessage using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Application.HintMouseMessage) |
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.HintMouseMessage using the print() command
1 2 |
print(DelphiVCL.Application.HintMouseMessage) print(DelphiVCL.Application.HintMouseMessage.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.