Visual Basic (Declaration) | |
---|---|
Public Function New() |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As New FpScrollBarButton() |
C# | |
---|---|
public FpScrollBarButton() |
This example changes the type of scrolling the button does.
C# | ![]() |
---|---|
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; } |
Visual Basic | ![]() |
---|---|
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 |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2