Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / FilterBarDoubleClick Event


In This Topic
    FilterBarDoubleClick Event
    In This Topic
    Occurs when the user presses the left mouse button down twice (double-clicks) in a filter bar cell.
    Syntax
    'Declaration
     
    
    Public Event FilterBarDoubleClick As FilterBarClickEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As FilterBarClickEventHandler
     
    AddHandler instance.FilterBarDoubleClick, handler
    public event FilterBarClickEventHandler FilterBarDoubleClick
    Event Data

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

    PropertyDescription
    Gets which mouse button has been pressed.  
    Gets or sets whether to cancel default processing.  
    Gets the column index of the cell in filter bar that is clicked.  
    Gets the view that contains the filter bar cell that is clicked.  
    Gets the x-coordinate of the pointer position.  
    Gets the y-coordinate of the pointer position.  
    See Also