System.Bindings.Expression.TBidiAssociation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TBidiAssociation = record
  public
    BidiInterface: IInterface;
    BidiName: string;
    constructor Create(ABidiInterface: IInterface; const ABidiName: string);
  end;

C++

struct DECLSPEC_DRECORD TBidiAssociation
{
public:
    System::_di_IInterface BidiInterface;
    System::UnicodeString BidiName;
    __fastcall TBidiAssociation(System::_di_IInterface ABidiInterface, const System::UnicodeString ABidiName);
    TBidiAssociation() {}
};

Properties

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

Description

Stores an association between an interface and an expression object.

TBidiAssociation is a record that stores an association between an interface and an expression object. TBidiAssociation has the following fields and methods:

Parameter Meaning
BidiInterface The interface reference that is part of the association.
BidiName The expression object that is part of the association.
Create Constructs the association using the given interface reference and the given expression object. ABidiInterface is the interface reference of the association while ABidiName is the expression object of the association.

See Also