Creates a new object with the ScrollTipFetch event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal As String, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Boolean _
)
'Usage
Dim view As SpreadView
Dim text As String
Dim row As Integer
Dim column As Integer
Dim showTip As Boolean
Dim instance As New ScrollTipFetchEventArgs(view, text, row, column, showTip)
public ScrollTipFetchEventArgs(
SpreadView ,
string ,
int ,
int column,
bool
)
Parameters
- view
- View that is scrolled
- text
- Text in the scroll tip
- row
- New top row
- column
- New left column
- showTip
- Whether to show the scroll tip
See Also