FMX.StdCtrls.TScrollBar.SmallChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SmallChange: Single read GetSmallChange write SetSmallChange stored SmallChangeStored nodefault;

C++

__property float SmallChange = {read=GetSmallChange, write=SetSmallChange, stored=SmallChangeStored};

Properties

Type Visibility Source Unit Parent
property published
FMX.StdCtrls.pas
FMX.StdCtrls.hpp
FMX.StdCtrls TScrollBar

Description

Controls the number of positions this scroll bar's slider moves on each pressing of the min or max button.

Use the SmallChange property to control the number of positions the slider of this scroll bar forwards or backwards in respect to pressing the max or min buttons.

For instance, setting SmallChange to 10 causes each push of the max or min button make the slider move with exactly 10 positions forwards or backwards.

Tip: If the current position of the slider (reflected by Value) is a number lower than SmallChange, then pressing the min button will bring Value to 0.

See Also