Data.Bind.Components.TBindCompAssignedValueEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBindCompAssignedValueEvent = procedure(Sender: TObject; AssignValueRec: TBindingAssignValueRec;
const Value: TValue) of object;

C++

typedef void __fastcall (__closure *TBindCompAssignedValueEvent)(System::TObject* Sender, const System::Bindings::Outputs::TBindingAssignValueRec &AssignValueRec, const System::Rtti::TValue &Value);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components Data.Bind.Components

Description

Procedural type used by all OnAssignedValue events.

Parameter Description
Sender Specifies the object that issues the event call.
AssignValueRec Specifies a record that contains a binding output pair (binding expression, output object and property).
Value Specifies the value for the assignment.

See Also