'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.
Property | Description |
---|---|
Column | Gets the column index of the cell that is clicked. |
ColumnFooter | Gets whether the cell is in the column footer. |
ColumnHeader | Gets whether the cell is in the column headers. |
FetchCellNote | Gets whether to fetch the cell note. |
Row | Gets the row index of the cell that is clicked. |
RowHeader | Gets whether the cell is in the row headers. |
ShowTip | Gets or sets whether to show the text tip or show the cell note as a tip window. |
TipText | Gets or sets the text in the text tip. |
TipWidth | Gets or sets the width of the text tip or cell note. |
View | Gets the view that contains the cell that is clicked. |
WrapText | Gets or sets whether the text tip or cell note should wrap for multiple lines. |
See Also