SmallChange Property

Applies To

DrawingObjects Collection, ScrollBar Object, ScrollBars Collection, Spinner Object, Spinners Collection.

Description

Returns or sets the amount that the scroll bar or spinner increments or decrements for a line scroll (when the user clicks an arrow). Read-write.

See Also

LargeChange Property.

Example

This example sets scroll bar one on Dialog1 to move two units for each line scroll and 20 units for each page scroll.


With DialogSheets("Dialog1").ScrollBars(1)
    .SmallChange = 2
    .LargeChange = 20
End With