| 
 | 
 | 
 | 
| SftTree.ToolTipColumn Event | 
A column header ToolTip is about to be displayed.
Deprecated - Provided for compatibility with earlier versions only - Use the ToolTipColumnHeader event instead
Syntax
| VB.NET | Private Sub object_ToolTipColumn(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.ToolTipColumn | ||
| VB | Private Sub object_ToolTipColumn(Text As String, ByVal ColIndex As Integer) | ||
| C#.NET | void object_ToolTipColumn(object sender, EventArgumentType e); | ||
| VC++ | void OnToolTipColumnobject(_bstr_t* Text, short ColIndex); | ||
| C | HRESULT OnToolTipColumnobject(BSTR* Text, short ColIndex); | ||
| Delphi | procedure objectToolTipColumn(Sender: TObject; var Text : WideString; ColIndex : Smallint); | 
object
A SftTree object.
Text
The ToolTip text. If Text is set to an empty string (the default), no ToolTip is displayed. A maximum string length of 1000 characters is supported.
ColIndex
The zero-based number of the column for which a ToolTip is about to be displayed.
Comments
The ToolTipColumn event occurs when a column header ToolTip is about to be displayed.
Deprecated - Provided for compatibility with earlier versions only - Use the ToolTipColumnHeader event instead
The ToolTipColumn event occurs when the mouse cursor pauses above a column header. By implementing the ToolTipColumn event, an application can provide text in the Text parameter, which is used to display a ToolTip for the column header ColIndex. The ToolTip is displayed as an explanatory ToolTip relative to the mouse cursor.
See Also SftTree Object | Object Hierarchy