System.Bindings.Expression.TBindingAssociation
From RAD Studio API Documentation
Delphi
TBindingAssociation = record public RealObject: TObject; ScriptObject: String; constructor Create(ARealObject: TObject; const AScriptObject: String); end;
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.
|