FilterBarEventArgs Constructor
In This Topic
Creates a new object with the FilterBarClick event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As MouseButtons _
)
'Usage
Dim view As SpreadView
Dim column As Integer
Dim x As Integer
Dim y As Integer
Dim button As MouseButtons
Dim instance As New FilterBarEventArgs(view, column, x, y, button)
public FilterBarEventArgs(
SpreadView ,
int column,
int ,
int ,
MouseButtons
)
Parameters
- view
- View (Spreadview object) that contains the filter bar cell clicked
- column
- Column index of filter bar cell clicked
- x
- X-coordinate of the pointer position
- y
- Y-coordinate of the pointer position
- button
- Which mouse button was pressed
See Also