Data.Bind.Components.TBindCompAssignedValueEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
type
typedef
Visibility: public
Source:
Data.Bind.Components.pas
Data.Bind.Components.hpp
Unit: Data.Bind.Components
Parent: Data.Bind.Components

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);

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