Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / MenuItemClicked Event
Example


In This Topic
    MenuItemClicked Event
    In This Topic
    Occurs when the Spread context menu item is clicked.
    Syntax
    'Declaration
     
    
    Public Event MenuItemClicked As MenuItemClickedHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As MenuItemClickedHandler
     
    AddHandler instance.MenuItemClicked, handler
    public event MenuItemClickedHandler MenuItemClicked
    Event Data

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

    PropertyDescription
    Gets the type of the menu.  
    Gets the selected item.  
    Example
    This example uses the MenuItemClicked event.
    See Also