FMX.StdActns.TCustomValueRange.Frequency

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Frequency: Double read GetFrequency write SetFrequency stored FrequencyStored nodefault;

C++

__property double Frequency = {read=GetFrequency, write=SetFrequency, stored=FrequencyStored};

Properties

Type Visibility Source Unit Parent
property public
FMX.StdActns.pas
FMX.StdActns.hpp
FMX.StdActns TCustomValueRange

Description

The step of possible Value variations.

FMX.StdActns.TCustomValueRange.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