LargeChange Property

Applies To

DrawingObjects Collection, ScrollBar Object, ScrollBars Collection.

Description

Returns or sets the amount that the scroll box increments or decrements for a page scroll (when the user clicks in the scroll bar body region). Read-write.

See Also

SmallChange 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