'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.
Property | Description |
---|---|
Button | Gets which mouse button has been pressed. |
Cancel | Gets or sets whether to cancel default processing. |
Column | Gets the column index of the cell in filter bar that is clicked. |
View | Gets the view that contains the filter bar cell that is clicked. |
X | Gets the x-coordinate of the pointer position. |
Y | Gets the y-coordinate of the pointer position. |
See Also