Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / FilterBarClick Event


In This Topic
    FilterBarClick Event
    In This Topic
    Occurs when the user presses the left mouse button in a filter bar cell.
    Syntax
    'Declaration
     
    
    Public Event FilterBarClick As FilterBarClickEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As FilterBarClickEventHandler
     
    AddHandler instance.FilterBarClick, handler
    public event FilterBarClickEventHandler FilterBarClick
    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