Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / TextTipFetchEventArgs Class / TextTipFetchEventArgs Constructor / TextTipFetchEventArgs Constructor(SpreadView,String,Int32,Int32,Boolean,Int32,Boolean)
View that contains the cell that is clicked
Text in the text tip
Row index of the cell that is clicked
Column index of the cell that is clicked
Whether the text tip or cell note should wrap for multiple lines
Width of the text tip or cell note
Whether to show the text tip or cell note


In This Topic
    TextTipFetchEventArgs Constructor(SpreadView,String,Int32,Int32,Boolean,Int32,Boolean)
    In This Topic
    Creates a new object with the TextTipFetch event arguments.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal view As SpreadView, _
       ByVal text As String, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal wrapText As Boolean, _
       ByVal width As Integer, _
       ByVal showTip 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 view,
       string text,
       int row,
       int column,
       bool wrapText,
       int width,
       bool showTip
    )

    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