|
|
Previous Top Next |
| FormHelp component.
|
| procedure ShowHelpFromPoint(ShowPoint: TPoint; Help: String);
|
| The ShowHelpFromPoint method displays the popup window with context-sensitive help, from point specified by ShowPoint parameter and text specified by Help string.
|
| procedure TForm1.Whatsthis1Click(Sender: TObject);
|
| var
|
| Point: TPoint;
|
| begin
|
| Point.X := Left + 150;
|
| Point.Y := Top + 100;
|
| FormHelp.ShowHelpFromPoint(Point, 'Hello world!');
|
| end;
|
| ShowHelp and ShowHelpFromControl methods;
|
| Rich formatting of context-sensitive help.
|