property Gantt.ScrollPartVisible(ScrollBar as ScrollBarEnum, Part as ScrollPartEnum) as Boolean
Indicates whether the specified scroll part is visible or hidden.

TypeDescription
ScrollBar as ScrollBarEnum A ScrollBar expression that indicates the scrollbar where the part is visible or hidden.
Part as ScrollPartEnum A ScrollPartEnum expression that specifies the parts of the scroll bar being visible
Boolean A Boolean expression that specifies whether the scrollbar's part is visible or hidden.
Use the ScrollPartVisible property to add or remove buttons/parts in the control's scrollbar. By default, when a part becomes visible, the ScrollPartEnable property is automatically called, so the parts becomes enabled. Use the ScrollPartEnable property to specify enable or disable parts in the control's scrollbar. Use the ScrollBars property to specify the visible scrollbars in the control. Use the ScrolPartCaption property to specify the caption of the scroll's part. Use the OffsetChanged event to notify your application that the scroll position is changed. Use the OversizeChanged event to notify your application whether the range for a specified scroll bar is changed. Use the ScrollPos property to specify the position for the control's scroll bar. The control fires the ScrollButtonClick event when the user clicks a part of the scroll bar. Use the Background property to change the visual appearance for any part in the control's scroll bar. Use the ScrollOrderParts property to customize the order of the buttons in the scroll bar.

By default, the following parts are shown:

The following VB sample adds up and down additional buttons to the control's vertical scroll bar :

With Gantt1
    .BeginUpdate
        .ScrollBars = exDisableBoth
        .ScrollPartVisible(exVScroll, exLeftB1Part Or exRightB1Part) = True
        .ScrollPartCaption(exVScroll, exLeftB1Part) = "<img></img>1"
        .ScrollPartCaption(exVScroll, exRightB1Part) = "<img></img>2"
    .EndUpdate
End With

The following VB.NET sample adds up and down additional buttons to the control's vertical scroll bar :

With AxGantt1
    .BeginUpdate()
    .ScrollBars = EXGANTTLib.ScrollBarsEnum.exDisableBoth
    .set_ScrollPartVisible(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exLeftB1Part Or EXGANTTLib.ScrollPartEnum.exRightB1Part, True)
    .set_ScrollPartCaption(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exLeftB1Part, "<img></img>1")
    .set_ScrollPartCaption(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exRightB1Part, "<img></img>2")
    .EndUpdate()
End With

The following C# sample adds up and down additional buttons to the control's vertical scroll bar :

axGantt1.BeginUpdate();
axGantt1.ScrollBars = EXGANTTLib.ScrollBarsEnum.exDisableBoth;
axGantt1.set_ScrollPartVisible(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exLeftB1Part | EXGANTTLib.ScrollPartEnum.exRightB1Part, true);
axGantt1.set_ScrollPartCaption(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exLeftB1Part , "<img></img>1");
axGantt1.set_ScrollPartCaption(EXGANTTLib.ScrollBarEnum.exVScroll, EXGANTTLib.ScrollPartEnum.exRightB1Part, "<img></img>2");
axGantt1.EndUpdate();

The following C++ sample adds up and down additional buttons to the control's vertical scroll bar :

m_gantt.BeginUpdate();
m_gantt.SetScrollBars( 15 /*exDisableBoth*/ );
m_gantt.SetScrollPartVisible( 0 /*exVScroll*/, 32768  /*exLeftB1Part*/ | 32 /*exRightB1Part*/, TRUE );
m_gantt.SetScrollPartCaption( 0 /*exVScroll*/, 32768  /*exLeftB1Part*/ , _T("<img></img>1") );
m_gantt.SetScrollPartCaption( 0 /*exVScroll*/, 32 /*exRightB1Part*/ , _T("<img></img>2") );
m_gantt.EndUpdate();

The following VFP sample adds up and down additional buttons to the control's vertical scroll bar :

With thisform.Gantt1
    .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))