Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / TouchToolbarOpening Event


In This Topic
    TouchToolbarOpening Event
    In This Topic
    Occurs before GcSpreadSheet shows the touch strip menu bar.
    Syntax
    'Declaration
     
    Public Event TouchToolbarOpening As EventHandler(Of TouchToolbarOpeningEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of TouchToolbarOpeningEventArgs)
     
    AddHandler instance.TouchToolbarOpening, handler
    public event EventHandler<TouchToolbarOpeningEventArgs> TouchToolbarOpening
    Event Data

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

    PropertyDescription
    Specifies the location of the touch strip pop up.  
    Gets or sets a value that marks the event as handled.  
    Gets or sets the horizontal tapped position.  
    Gets or sets the vertical tapped position.  
    See Also