System.Bindings.Expression.TBindingAssociation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBindingAssociation = record

C++

struct DECLSPEC_DRECORD TBindingAssociation
{
public:
    System::TObject* RealObject;
    System::UnicodeString ScriptObject;
    __fastcall TBindingAssociation(System::TObject* ARealObject, const System::UnicodeString AScriptObject);
    TBindingAssociation() {}
};

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 a Delphi object and an expression object.

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

Parameter Meaning
RealObject The Delphi object in the association.
ScriptObject The expression object in the association.
Create Constructs the association using the given Delphi and expression objects. ARealObject specifies the Delphi object of the association while AScriptObject specifies the expression object of the association.

See Also