WebUIControl.ContextualMenuSelected
From Xojo Documentation
You are currently browsing the old Xojo documentation site. Please visit the new Xojo documentation site! |
Event
WebUIControl.ContextualMenuSelected(hitItem as WebMenuItem)
New in 2020r1
Supported for all project types and targets.
New in 2020r1
Supported for all project types and targets.
Called when a contextual menu item is selected. This selected item is contained in hitItem.
Example
This example populates a contextual menu in the Opening event of a WebToolbar:
Var menu As New WebMenuItem
menu.AddMenuItem("One")
menu.AddMenuItem("Two")
menu.AddMenuItem("Three")
Me.ContextualMenu = menu
menu.AddMenuItem("One")
menu.AddMenuItem("Two")
menu.AddMenuItem("Three")
Me.ContextualMenu = menu
The menu selection is then handled by the ContextualMenuSelected event when the user right-clicks on the control. For example, it can be of the form:
Select case hitItem.Value
Case "One"
MessageBox("One")
Case "Two"
MessageBox("Two")
Case "Three"
MessageBox("Three")
End Select
Case "One"
MessageBox("One")
Case "Two"
MessageBox("Two")
Case "Three"
MessageBox("Three")
End Select
There are equivalent events and properties for managing contextual menus on WebPage as well.
See Also
WebMenuItem class.