System.Bindings.Outputs.TConvertPair

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TConvertPair = record
    FromType: PTypeInfo;
    ToType: PTypeInfo;
    constructor Create(AFrom, ATo: PTypeInfo);
  end;

C++

struct DECLSPEC_DRECORD TConvertPair
{
public:
    System::Typinfo::TTypeInfo *FromType;
    System::Typinfo::TTypeInfo *ToType;
    __fastcall TConvertPair(System::Typinfo::PTypeInfo AFrom, System::Typinfo::PTypeInfo ATo);
    TConvertPair() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Bindings.Outputs.pas
System.Bindings.Outputs.hpp
System.Bindings.Outputs System.Bindings.Outputs

Description

Record that contains conversion pair information.

TConvertPair is a record that contains conversion pair information.

TConvertPair has the following fields:

Parameter Meaning
FromType Pointer to PTypeInfo, related to the source value.
ToType Pointer to PTypeInfo, related to the destination value.

See Also