TiAnalogOutput.FilterStyle
TiAnalogOutput
Determines the type of keypress filtering.
type TiFilterInputStyle = (ifisNone, ifisAuto);
property FilterStyle : TiFilterInputStyle;
Description
Use FilterStyle to specify the type of keypress filtering.
These are the possible values:
Value
Meaning
ifisNone
Allows all keys.
ifisAuto
Allows 0-9 Keys, UnitsText Characters, and Decimal Point if Precision > 0.
Example
Delphi
iComponent.FilterStyle := ifisAuto;
C++ Builder
iComponent->FilterStyle = ifisAuto;
Contents | Index | Previous | Next