FMX.Filter.TFilterValueRec

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TFilterValueRec = record
    Name: string;
    Desc: string;
    ValueType: TFilterValueType;
    Value: TValue;
    Min, Max, Default: TValue;
    Bitmap: TBitmap;
    constructor Create(const AName, ADesc: string; AType: TFilterValueType; ADefault, AMin, AMax: TValue); overload;
    constructor Create(const AName, ADesc: string; AType: TFilterValueType); overload;
    constructor Create(const AName, ADesc: string; ADefault: TAlphaColor); overload;
    constructor Create(const AName, ADesc: string; ADefault, AMin, AMax: Single); overload;
    constructor Create(const AName, ADesc: string; ADefault, AMin, AMax: TPointF); overload;
  end;

C++

struct DECLSPEC_DRECORD TFilterValueRec
{
public:
    System::UnicodeString Name;
    System::UnicodeString Desc;
    TFilterValueType ValueType;
    System::Rtti::TValue Value;
    System::Rtti::TValue Min;
    System::Rtti::TValue Max;
    System::Rtti::TValue Default;
    Fmx::Graphics::TBitmap* Bitmap;
    __fastcall TFilterValueRec(const System::UnicodeString AName, const System::UnicodeString ADesc, TFilterValueType AType, const System::Rtti::TValue &ADefault, const System::Rtti::TValue &AMin, const System::Rtti::TValue &AMax)/* overload */;
    __fastcall TFilterValueRec(const System::UnicodeString AName, const System::UnicodeString ADesc, TFilterValueType AType)/* overload */;
    __fastcall TFilterValueRec(const System::UnicodeString AName, const System::UnicodeString ADesc, System::Uitypes::TAlphaColor ADefault)/* overload */;
    __fastcall TFilterValueRec(const System::UnicodeString AName, const System::UnicodeString ADesc, float ADefault, float AMin, float AMax)/* overload */;
    __fastcall TFilterValueRec(const System::UnicodeString AName, const System::UnicodeString ADesc, const System::Types::TPointF &ADefault, const System::Types::TPointF &AMin, const System::Types::TPointF &AMax)/* overload */;
    TFilterValueRec() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
FMX.Filter.pas
FMX.Filter.hpp
FMX.Filter FMX.Filter

Beschreibung

Record, der Informationen über einen Schattiererfilterwert enthält.

In der folgenden Tabelle werden die Felder des Records beschrieben:

Feld Beschreibung

Name

Der Name des Schattiererfilterwertes.

Desc

Die Beschreibung des Schattiererfilterwertes.

ValueType

Der Typ TFilterValueType des Schattiererfilterwertes. Die folgenden Optionen sind möglich: Bitmap, Float, Point und Color.

Value

Der Wert des Schattiererfilters.

Min

Der Minimalwert, der im Feld Value enthalten sein kann.

Max

Der Maximalwert, der im Feld Value enthalten sein kann.

Default

Der Standardwert des Schattiererfilters.

Bitmap

Das TBitmap-Bitmap, das in diesem Record des Schattiererfilterwertes geschpeichert wird.

Siehe auch