OnShowHint Event

[Top]  [Chapter]  [Previous]  [Next]

Member of WPDLLInt

Declaration C#

OnShowHint(Object Sender, int X, int Y, string Hint, ref bool Ignore);

 

Declaration OCX

OnShowHint(ByVal X As Long, ByVal Y As Long, ByVal Hint As String, Ignore As Boolean)

 

This event can be used to display a hint message, for example in the status bar of the application. The event will be fired when the mouse hovers one of the buttons.

Private void wpdllInt1_OnShowHint(Object Sender, int X, int Y, String Hint, ref bool Ignore)

{

   stHint.Text = Hint;

   Ignore = True;

}


[idh_wpdllint_onshowhint.htm]    Copyright © 2007 by WPCubed GmbH