![]() | Type | Description | ||
| ScrollBar as ScrollBarEnum | A ScrollBarEnum expression that specifies the scroll bar being clicked. | |||
| ScrollPart as ScrollPartEnum | A ScrollPartEnum expression that indicates the part of the scroll being clicked. |
The following VB sample displays the identifier of the scroll's button being clicked:
With G2antt1
.BeginUpdate
.ScrollBars = exDisableBoth
.ScrollPartVisible(exVScroll, exLeftB1Part Or exRightB1Part) = True
.ScrollPartCaption(exVScroll, exLeftB1Part) = "<img></img>1"
.ScrollPartCaption(exVScroll, exRightB1Part) = "<img></img>2"
.EndUpdate
End With
Private Sub G2antt1_ScrollButtonClick(ByVal ScrollPart As EXG2ANTTLibCtl.ScrollPartEnum)
MsgBox (ScrollPart)
End Sub
The following VB.NET sample displays the identifier of the scroll's button being clicked:
With AxG2antt1
.BeginUpdate()
.ScrollBars = EXG2ANTTLib.ScrollBarsEnum.exDisableBoth
.set_ScrollPartVisible(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exLeftB1Part Or EXG2ANTTLib.ScrollPartEnum.exRightB1Part, True)
.set_ScrollPartCaption(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exLeftB1Part, "<img></img>1")
.set_ScrollPartCaption(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exRightB1Part, "<img></img>2")
.EndUpdate()
End With
Private Sub AxG2antt1_ScrollButtonClick(ByVal sender As System.Object, ByVal e As AxEXG2ANTTLib._IG2anttEvents_ScrollButtonClickEvent) Handles AxG2antt1.ScrollButtonClick
MessageBox.Show( e.scrollPart.ToString())
End Sub
The following C# sample displays the identifier of the scroll's button being clicked:
axG2antt1.BeginUpdate(); axG2antt1.ScrollBars = EXG2ANTTLib.ScrollBarsEnum.exDisableBoth; axG2antt1.set_ScrollPartVisible(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exLeftB1Part | EXG2ANTTLib.ScrollPartEnum.exRightB1Part, true); axG2antt1.set_ScrollPartCaption(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exLeftB1Part , "<img></img>1"); axG2antt1.set_ScrollPartCaption(EXG2ANTTLib.ScrollBarEnum.exVScroll, EXG2ANTTLib.ScrollPartEnum.exRightB1Part, "<img></img>2"); axG2antt1.EndUpdate();
private void axG2antt1_ScrollButtonClick(object sender, AxEXG2ANTTLib._IG2anttEvents_ScrollButtonClickEvent e)
{
MessageBox.Show(e.scrollPart.ToString());
}
The following C++ sample displays the identifier of the scroll's button being clicked:
m_g2antt.BeginUpdate();
m_g2antt.SetScrollBars( 15 /*exDisableBoth*/ );
m_g2antt.SetScrollPartVisible( 0 /*exVScroll*/, 32768 /*exLeftB1Part*/ | 32 /*exRightB1Part*/, TRUE );
m_g2antt.SetScrollPartCaption( 0 /*exVScroll*/, 32768 /*exLeftB1Part*/ , _T("<img></img>1") );
m_g2antt.SetScrollPartCaption( 0 /*exVScroll*/, 32 /*exRightB1Part*/ , _T("<img></img>2") );
m_g2antt.EndUpdate();
void OnScrollButtonClickG2antt1(long ScrollPart)
{
CString strFormat;
strFormat.Format( _T("%i"), ScrollPart );
MessageBox( strFormat );
}
The following VFP sample displays the identifier of the scroll's button being clicked:
With thisform.G2antt1
.BeginUpdate
.ScrollBars = 15
.ScrollPartVisible(0, bitor(32768,32)) = .t.
.ScrollPartCaption(0,32768) = "<img></img>1"
.ScrollPartCaption(0, 32) = "<img></img>2"
.EndUpdate
EndWith
*** ActiveX Control Event *** LPARAMETERS scrollpart wait window nowait ltrim(str(scrollpart))