Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / TextTipFetch Event


In This Topic
    TextTipFetch Event
    In This Topic
    Occurs when the pointer (cursor) is over a cell and the text tip or cell note should be displayed (the TextTip property is set to a value other than Off).
    Syntax
    'Declaration
     
    
    Public Event TextTipFetch As TextTipFetchEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As TextTipFetchEventHandler
     
    AddHandler instance.TextTipFetch, handler
    public event TextTipFetchEventHandler TextTipFetch
    Event Data

    The event handler receives an argument of type TextTipFetchEventArgs containing data related to this event. The following TextTipFetchEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the column index of the cell that is clicked.  
    Gets whether the cell is in the column footer.  
    Gets whether the cell is in the column headers.  
    Gets whether to fetch the cell note.  
    Gets the row index of the cell that is clicked.  
    Gets whether the cell is in the row headers.  
    Gets or sets whether to show the text tip or show the cell note as a tip window.  
    Gets or sets the text in the text tip.  
    Gets or sets the width of the text tip or cell note.  
    Gets the view that contains the cell that is clicked.  
    Gets or sets whether the text tip or cell note should wrap for multiple lines.  
    See Also