FMX.Filter.TFilterRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFilterRec = record
    Name: string;
    Desc: string;
    Values: TFilterValueRecArray;
    constructor Create(const AName, ADesc: string; AValues: array of TFilterValueRec); overload;
  end;

C++

struct DECLSPEC_DRECORD TFilterRec
{
public:
    System::UnicodeString Name;
    System::UnicodeString Desc;
    TFilterValueRecArray Values;
    __fastcall TFilterRec(const System::UnicodeString AName, const System::UnicodeString ADesc, TFilterValueRec *AValues, const int AValues_High)/* overload */;
    TFilterRec() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Filter.pas
FMX.Filter.hpp
FMX.Filter FMX.Filter

Description

Record that holds filter attributes.

The following table shows the significance of the record fields:

Parameter Description

Name

The name of the filter

Desc

The description of the filter

Values

The TFilterValueRec array of the filter

See Also