|
|
|
SftTree.ToolTipVScroll Event |
A ScrollTip is about to be displayed.
Syntax
VB.NET |
Private Sub object_ToolTipVScroll(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.ToolTipVScroll |
||
VB |
Private Sub object_ToolTipVScroll(Text As String, ByVal ItemIndex As Long, ByVal ColIndex As Integer) |
||
C#.NET |
void object_ToolTipVScroll(object sender, EventArgumentType e); |
||
VC++ |
void OnToolTipVScrollobject(_bstr_t* Text, long ItemIndex, short ColIndex); |
||
C |
HRESULT OnToolTipVScrollobject(BSTR* Text, long ItemIndex, short ColIndex); |
||
Delphi |
procedure objectToolTipVScroll(Sender: TObject; var Text : WideString; ItemIndex : Integer; ColIndex : Smallint); |
object
A SftTree object.
Text
The default ScrollTip text. The application can override the default text by assigning a new string to the Text parameter. This string is displayed as the ToolTip instead. If Text is set to an empty string, no ToolTip is displayed. A maximum string length of 1000 characters is supported.
ItemIndex
The zero-based index of the first item currently displayed in the tree control client area (see Items.TopIndex).
ColIndex
The zero-based column number of the first column displayed.
Comments
The ToolTipVScroll event occurs when a ScrollTip is about to be displayed.
The ToolTipVScroll event occurs when the user scrolls the tree control contents vertically by dragging the vertical scroll bar's scroll box using the mouse.
See Also SftTree Object | Object Hierarchy