|
|
|
|
|
- Associating an image with a menu option
MenuAddOption (Function) In french: MenuAjouteOption
Not available
Adds a new option after the last option of a drop-down or context menu. This menu option executes a WLanguage procedure. To insert a menu option at a specific location, use MenuInsertOption. Reminder: The name of the main menu can be defined: in the description window of the window. in the description window of the menu.
Syntax
<Result> = MenuAddOption(<Source menu> , <Option to create> , <Caption> , <WLanguage procedure> [, <Procedure parameter>])
<Result>: Integer Position of the option in the menu. If the option is not added, a fatal error occurs. <Source menu>: Menu name Name of the menu to which the menu option should be added. The option will be added after the last option in this menu. Note: This name may correspond to a context menu. <Option to create>: Character string Name of the menu option to add. This name will be used to programmatically handle the menu option. If there is an option with the same name, a fatal error occurs. <Caption>: Character string Text of the new menu option. This text will be displayed in the window and will allow users to select the option. <WLanguage procedure>: Procedure name Name of the WLanguage procedure called when the menu option is selected. <Procedure parameter>: Optional variant Parameter that can be passed to <WLanguage procedure> when the menu option is selected by the user. Remarks Associating an image with a menu option To associate an image with a menu option, use the Image property.
Related Examples:
|
Sample components (WINDEV): WD LastDocuments
[ + ] This example explains how the list of last opened documents can be added to the application menu. This insertion is performed via a class proposed in the "LastDocuments" component. Four code lines are sufficient to insert the list of last opened documents into an existing application. These processes can be found in: - the declaration code of the global variables of the main window, - the code of the OpenDocument procedure, - the code of the menu options "File 1" to "File 10". The example has been simplified regarding the number of features (text files only) in order to highlight the use of the component.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|