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


In This Topic
    CellDoubleClick Event (GcSpreadSheet)
    In This Topic
    Occurs when the user presses down the left mouse button twice (double-clicks) in a cell.
    Syntax
    'Declaration
     
    Public Event CellDoubleClick As EventHandler(Of CellDoubleClickEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of CellDoubleClickEventArgs)
     
    AddHandler instance.CellDoubleClick, handler
    public event EventHandler<CellDoubleClickEventArgs> CellDoubleClick
    Event Data

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

    PropertyDescription
    Gets the column index of the clicked cell.  
    Gets the row index of the clicked cell.  
    Gets the area the clicked cell is in.  
    See Also