Menus.NewMenu
From RAD Studio VCL Reference
Contents |
Delphi Information
From Menus.pas
function NewMenu(Owner: TComponent; const AName: string; const Items: array of TMenuItem): TMainMenu;
Unit: Menus
Type: function
Visibility: public
C++ Information
From Menus.hpp
Menus::TMainMenu * __fastcall NewMenu(Classes::TComponent * Owner, System::UnicodeString AName, Menus::TMenuItem * const * Items, int Items_Size);
Unit: Menus
Type: function
Description
Creates and initializes a main menu.
Call NewMenu to create and initialize a main menu programmatically. NewMenu returns the TMainMenu component that represents the menu.
The Owner parameter specifies the component that is responsible for freeing the menu (typically the form).
The AName parameter specifies the name of the menu, which is used to refer to it in code.
The Items parameter is an array of menu items that make up the top level menu items. To create the menu items for the Items parameter, use the NewItem function.
Note: The Items_Size parameter specifies the index of the last menu item in Items (one less than the number of menu items).
See Also
Code Samples