Vcl.Forms.TControlScrollBar.Smooth

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Smooth: Boolean read FSmooth write FSmooth default False;

C++

__property bool Smooth = {read=FSmooth, write=FSmooth, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TControlScrollBar

Description

Specifies whether the amount the associated control scrolls is dynamically computed.

Set Smooth to true to specify that the scroll bar should dynamically adjust its scrolling increment based on the size of the associated control's client area.

When Smooth is true, clicking the end arrows of the scroll bar scrolls the associated control by approximately one tenth of its client area, and clicking the scroll bar beside the thumb tab scrolls the control by the length of the client area minus the amount scrolled by the end arrows. When Smooth is false, the Increment property controls the amount of scrolling when the user clicks the end arrows, and clicking beside the thumb tab scrolls the control by the entire length of the client area.

See Also