Creates a new object with the TextTipFetch event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal As String, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Boolean, _
ByVal As Integer, _
ByVal As Boolean _
)
'Usage
Dim view As SpreadView
Dim text As String
Dim row As Integer
Dim column As Integer
Dim wrapText As Boolean
Dim width As Integer
Dim showTip As Boolean
Dim instance As New TextTipFetchEventArgs(view, text, row, column, wrapText, width, showTip)
public TextTipFetchEventArgs(
SpreadView ,
string ,
int ,
int column,
bool ,
int ,
bool
)
Parameters
- view
- View that contains the cell that is clicked
- text
- Text in the text tip
- row
- Row index of the cell that is clicked
- column
- Column index of the cell that is clicked
- wrapText
- Whether the text tip or cell note should wrap for multiple lines
- width
- Width of the text tip or cell note
- showTip
- Whether to show the text tip or cell note
See Also