Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpScrollBarButton Class / ChangeType Property
Example


In This Topic
    ChangeType Property (FpScrollBarButton)
    In This Topic
    Gets or sets the type of change of the scroll bar.
    Syntax
    'Declaration
     
    Public Overridable Property ChangeType As ChangeType
    'Usage
     
    Dim instance As FpScrollBarButton
    Dim value As ChangeType
     
    instance.ChangeType = value
     
    value = instance.ChangeType
    public virtual ChangeType ChangeType {get; set;}

    Property Value

    ChangeType setting that specifies the type of change of the scroll bar
    Example
    This example changes the type of scrolling the button does.
    fpSpread1.VerticalScrollBar.Renderer = null;
    FarPoint.Win.Spread.FpScrollBarButtonCollection buttons = new FarPoint.Win.Spread.FpScrollBarButtonCollection();
    buttons.AddRange(new FarPoint.Win.Spread.FpScrollBarButton[] {
                new FarPoint.Win.Spread.FpScrollBarButtonBackwardLine(),
                new FarPoint.Win.Spread.FpScrollBarComboThumb(),
                new FarPoint.Win.Spread.FpScrollBarButtonForwardLine()});
    fpSpread1.VerticalScrollBar.Buttons = buttons;
    foreach (FarPoint.Win.Spread.FpScrollBarButton btn in buttons) {
        btn.ChangeType = FarPoint.Win.Spread.ChangeType.MoveToEnd;
        btn.ChangeValue = 4;
    }
    
    FpSpread1.VerticalScrollBar.Renderer = Nothing
    Dim buttons As New FarPoint.Win.Spread.FpScrollBarButtonCollection
    buttons.AddRange(New FarPoint.Win.Spread.FpScrollBarButton() {New FarPoint.Win.Spread.FpScrollBarButtonBackwardLine(), New
    FarPoint.Win.Spread.FpScrollBarComboThumb(), New FarPoint.Win.Spread.FpScrollBarButtonForwardLine()})
    FpSpread1.VerticalScrollBar.Buttons = buttons
    
    Dim btn As FarPoint.Win.Spread.FpScrollBarButton
    For Each btn In buttons
    btn.ChangeType = FarPoint.Win.Spread.ChangeType.MoveToEnd
    btn.ChangeValue = 4
    Next
    
    See Also