Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
uicontextmenu
Creates a context menu
Syntax
h = uicontextmenu()
Description
This function creates an empty context menu where menus can be added using uimenu.
Example
// Create a context menu hMenu = uicontextmenu(); // Create sub menus hItem1 = uimenu("Label", "Item1", "Parent", hMenu, "Callback", "disp(""Item1 clicked!"")"); hItem2 = uimenu("Label", "Item2", "Parent", hMenu, "Callback", "disp(""Item2 clicked!"")"); hItem3 = uimenu("Label", "Item3", "Parent", hMenu, "Callback", "disp(""Item3 clicked!"")");
See also
Report an issue | ||
<< setmenu | Menus | uimenu >> |