GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / VerticalScrollBar Property
In This Topic
    VerticalScrollBar Property
    In This Topic
    Gets or sets the vertical scroll bar used by the view when not all objects can be displayed at once in the given client area.
    Syntax
    [Browsable(false)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public VScrollBar VerticalScrollBar {get; set;}

    Property Value

    The VScrollBar control may be invisible and/or disabled, or null. Setting this property will set up HandleScroll as a scroll event handler for the scroll bar. The value comes from either the RightBar property or the LeftBar property.
    Remarks
    The scroll bar has the LargeChange and SmallChange properties, which affect how much is scrolled at a time. The LargeChange property is computed given the height of the view's client area minus the SmallChange value. The SmallChange property value is taken from the ScrollSmallChange property height.
    See Also