

| Type | Description | |||
| ScrollBar as ScrollBarEnum | A ScrollBarEnum expression that indicates the vertical scroll bar or the horizontal scroll bar. | |||
| String | A string expression being shown when the user clicks and moves the scrollbar's thumb. |
The following VB sample displays a tooltip when the user clicks and moves the thumb in the control's scroll bar:
Private Sub Grid1_OffsetChanged(ByVal Horizontal As Boolean, ByVal NewVal As Long)
If (Not Horizontal) Then
Grid1.ScrollToolTip(exVScroll) = "Record " & NewVal
End If
End Sub
The following VB.NET sample displays a tooltip when the user clicks and moves the thumb in the control's scroll bar:
Private Sub AxGrid1_OffsetChanged(ByVal sender As System.Object, ByVal e As AxEXGRIDLib._IGridEvents_OffsetChangedEvent) Handles AxGrid1.OffsetChanged
If (Not e.horizontal) Then
AxGrid1.set_ScrollToolTip(EXGRIDLib.ScrollBarEnum.exVScroll, "Record " & e.newVal.ToString())
End If
End SubThe following C++ sample displays a tooltip when the user clicks and moves the thumb in the control's scroll bar:
void OnOffsetChangedGrid1(BOOL Horizontal, long NewVal)
{
if ( !Horizontal )
{
CString strFormat;
strFormat.Format( _T("%i"), NewVal );
m_grid.SetScrollToolTip( 0, strFormat );
}
}The following C# sample displays a tooltip when the user clicks and moves the thumb in the control's scroll bar:
private void axGrid1_OffsetChanged(object sender, AxEXGRIDLib._IGridEvents_OffsetChangedEvent e)
{
if ( !e.horizontal )
axGrid1.set_ScrollToolTip(EXGRIDLib.ScrollBarEnum.exVScroll, "Record " + e.newVal.ToString());
}The following VFP sample displays a tooltip when the user clicks and moves the thumb in the control's scroll bar:
*** ActiveX Control Event ***
LPARAMETERS horizontal, newval
If (1 # horizontal) Then
thisform.Grid1.ScrollToolTip(0) = "Record " + ltrim(str(newval))
EndIf