Xamarin.iOS Documentation | ComponentOne
C1.iOS.Viewer Assembly / C1.iOS.Viewer Namespace / FlexViewer Class / MenuItemClicked Event


In This Topic
    MenuItemClicked Event
    In This Topic
    Occurs when click on hamburger menu item.
    Syntax
    'Declaration
     
    
    Public Event MenuItemClicked As EventHandler(Of MenuItemClickedEventArgs)
    'Usage
     
    
    Dim instance As FlexViewer
    Dim handler As EventHandler(Of MenuItemClickedEventArgs)
     
    AddHandler instance.MenuItemClicked, handler
    public event EventHandler<MenuItemClickedEventArgs> MenuItemClicked
    Event Data

    The event handler receives an argument of type MenuItemClickedEventArgs containing data related to this event. The following MenuItemClickedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets whether to cancel the execution of menu item.  
    Gets the clicked item.  
    Gets the index of the item.  
    See Also