formhelp ShowHelpFromPoint property
Previous  Top  Next
Applies to
FormHelp component.  

Declaration
procedure ShowHelpFromPoint(ShowPoint: TPoint; Help: String);  

Description
The ShowHelpFromPoint method displays the popup window with context-sensitive help, from point specified by ShowPoint parameter and text specified by Help string.  

Example
procedure TForm1.Whatsthis1Click(Sender: TObject);  
var  
  Point: TPoint;  
begin  
  Point.X := Left + 150;  
  Point.Y := Top + 100;  
  FormHelp.ShowHelpFromPoint(Point, 'Hello world!');  
end;  

See also
ShowHelp and ShowHelpFromControl methods;  
Rich formatting of context-sensitive help.  
File not found.