|
|
Previous Top Next |
| FormHelp component.
|
| type
|
| TfhMenuSeparators = set of (seBefore, seAfter);
|
| TfhSystemMenu = class(TPersistent)
|
| published
|
| property ApplyToMenu: Boolean;
|
| property Caption: String;
|
| property Position: Word;
|
| property Separators: TacMenuSeparators;
|
| end;
|
|
|
| property SystemMenu: TfhSystemMenu;
|
| The System Menu is the popup menu that appears when you click on the program icon on the upper-left corner of form's title bar. The SystemMenu property is the list of properties that manages the menu item associated with current button on the form's title bar.
|
| ApplyToMenu | applies or removes the menu item associated with current button from the system menu;
|
| Caption | text for the title of menu item;
|
| Position | position of current menu item in the system menu;
|
| Separators | specifies the separators for menu item, to separatate it from previous and / or next menu item of the system menu.
|
|