INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- The `AppendMenu' function appends a new item to the end
-- of the specified menu. You can use this function to specify the content,
-- appearance, and behavior of the menu item.
-- The 'CheckMenuItem' function sets the state of the specified
-- menu item's check mark attribute to either checked or unchecked.
-- The `CreateMenu' function creates a menu.
-- The menu is initially empty, but it can be filled with menu items
-- by using the `AppendMenu' and `InsertMenu' functions.
-- The `CreatePopupMenu' function creates a pop-up menu.
-- The menu is initially empty. You can fill it with menu items by using
-- the `InsertMenu' and `AppendMenu' functions.
-- The `DestroyMenu' function destroys the specified menu and frees
-- any memory that the menu occupies.
-- The 'DrawMenuBar' procedure redraws the menu bar of the specified
-- window. If the menu bar changes after Windows has created the window,
-- this procedure must be called to draw the changed menu bar.
-- The 'EnableMenuItem' function enables, disables, or grays the given
-- menu item.
-- The 'GetMenu' function retrieves the handle of the menu assigned
-- to the given window.
-- The `GetMenuState' function retrieves the menu flags associated
-- with the specified menu item. If the menu item activates a pop-up menu,
-- this function also returns the number of items in the pop-up menu.
-- The 'GetSubMenu' function retrieves the handle of the pop-up menu
-- activated by the specified menu item.
-- The `GetSystemMenu' function allows the application to access
-- the System menu (also known as the Control menu)
-- for copying and modifying.
-- The `InsertMenu' function inserts a new menu item into a menu,
-- moving other items down the menu.
-- The 'IsMenu' function determines whether a handle is a menu handle.
-- The 'LoadMenu' function loads the specified menu resource from
-- the executable (.EXE) file associated with an application instance.
-- The 'ModifyMenu' procedure changes an existing menu item.
-- This procedure is used to specify the content, appearance,
-- and behavior of the menu item.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |