Get the UserMenuItems data collection that represents current user menu.
Public Function GetCurrentUserMenu() As UserMenuItems
Dim oUserMenuItems As UserMenuItems Dim oUserMenuItem As UserMenuItem 'get Current User Menu oUserMenuItems = oUserMenuService.GetCurrentUserMenu() 'Get the first menu item oUserMenuItem = oUserMenuItems.Item(0) 'print the menu name Debug.WriteLine(oUserMenuItem.Name())
UserMenuService Object