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


In This Topic
    TouchStripItemClicked Event
    In This Topic
    Occurs when the TouchStrip item is clicked.
    Syntax
    'Declaration
     
    
    Public Event TouchStripItemClicked As TouchStripItemClickedHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As TouchStripItemClickedHandler
     
    AddHandler instance.TouchStripItemClicked, handler
    public event TouchStripItemClickedHandler TouchStripItemClicked
    Event Data

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

    PropertyDescription
    Gets the TouchStrip area the clicked item belongs to.  
    Gets the selected item in the touch strip.  
    Example
    This example uses the TouchStripItemClicked event.
    See Also