FMX.StdActns.TValueRange.Frequency

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Frequency: Double read GetFrequency write SetFrequency stored FrequencyStored;

C++

__property Frequency;

Properties

Type Visibility Source Unit Parent
property published
FMX.StdActns.pas
FMX.StdActns.hpp
FMX.StdActns TValueRange

Description


The step of possible Value variations.

FMX.StdActns.TValueRange.Frequency inherits from FMX.StdActns.TBaseValueRange.Frequency. All content below this line refers to FMX.StdActns.TBaseValueRange.Frequency.

The step of possible Value variations.

Value can be multiple of Frequency, Min, or Max. For example, if

Min = 0.1
Max = 2.1
ViewportSize = 0
Frequency = 1

then Value can be:

0.1
1
2
2.1

but it cannot be:

Value = 1.1

See Also