Data.Bind.ObjectScope.TInitItemInstanceEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInitItemInstanceEvent = procedure(Sender: TBindSourceAdapter; AInstance: TObject) of object;

C++

typedef void __fastcall (__closure *TInitItemInstanceEvent)(TBindSourceAdapter* Sender, System::TObject* AInstance);

Properties

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

Description

TInitItemInstanceEvent is an event handler that takes place when an adapter is requested to initialize a newly created data source item.

It has the following parameters:

  • Sender specifies the adapter.
  • AInstance specifies a data source item to initialize.

See also