WebToolbar Menu ContextualMenuAction Not Firing

I have a web toolbar with a menu button it displays the Menu just fine when I click the button however the ContextualMenuAction is not firing.

In my page open event I have

   settingsMenu= new WebMenuItem
  settingsmenu.Append new WebMenuItem("Company Information")
  settingsMenu.Append new WebMenuItem("User Groups")
  settingsmenu.Append new WebMenuItem("Users")

  
  Dim SettingsButton As WebToolbarMenu
  SettingsButton=WebToolbarmenu(Toolbar1.ItemWithName("btnSettings"))
  SettingsButton.menu=settingsMenu

Never mind…silly me I missed the MenuAction event

MenuAction is not for WebmenuItem. i.e. not for web, but desktop.