System.Bindings.Expression.BidiAssociate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function BidiAssociate(BidiInterface: IInterface; const BidiName: string): TBidiAssociation;

C++

extern DELPHI_PACKAGE TBidiAssociation __fastcall BidiAssociate(System::_di_IInterface BidiInterface, const System::UnicodeString BidiName);

Properties

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

Description

Provides an easier way to create associations between interface references and expression objects.

The BidiAssociate method provides an easier way to create associations between interface references and expression objects. BidiAssociate is essentially a record TBidiAssociation constructor, but permits shorter syntax.

Call Associate with the following parameters:

Parameter Meaning
BidiInterface Denotes the interface reference implied in the association.
BidiName Denotes the expression object implied in the association.

Associate returns the association generated from the given interface reference and expression object.

See Also