Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
MenuItem.GetTag
Queries the tag value of the menu.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Menu | 4.1 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No |
Parameters
Parameter | Description | Example |
---|---|---|
item | The reference to the menu item. Please create one with MenuItem.CreateMenuItem or MenuItem.CreateSeparator. | $item |
Result
Returns value or error.
Description
Queries the tag value of the menu.See also Menu.SetTag.
With the tag, we allow you to associate a text with the menu item, for example a record ID.
Examples
Show menu and show selection:
Set Variable [$menu; Value:MBS("Menu.CreateMenu")]
# create menu items...
Set Variable [$item; Value:MBS("MenuItem.CreateMenuItem"; "Hello World")]
Set Variable [$r; Value:MBS("MenuItem.SetTag"; $item; "secret value")]
Set Variable [$r; Value:MBS("Menu.AddItem"; $menu; $item)]
#
#show menu
Set Variable [$m; Value:MBS("Menu.PopUp"; $Menu; "mouse")]
#
#you selected something?
If [$m = 1]
Set Variable [$selectedItem; Value:MBS("Menu.SelectedItem"; $menu)]
Set Variable [$selectedTitle; Value:MBS("MenuItem.GetTitle"; $selectedItem)]
Set Variable [$selectedTag; Value:MBS("MenuItem.GetTag"; $selectedItem)]
#
Show Custom Dialog ["Auswahl"; $selectedItem & ¶ & $selectedTitle & ¶ & $selectedTag]
End If
Set Variable [$m; Value:MBS("Menu.Release"; $Menu; 1)]
See also
- Menu.SelectedItem
- Menu.SetScriptAction
- MenuItem.CreateSeparator
- MenuItem.GetBold
- MenuItem.GetImage
- MenuItem.GetPath
- MenuItem.GetState
- MenuItem.GetTitle
- MenuItem.GetURL
- MenuItem.SetImage
Example Databases
This function is free to use.
Created 18th August 2014, last changed 7th April 2016