System.Bindings.Outputs.TBindingCallbackFactory.RegisterCallback

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure RegisterCallback(const ClassTypes: Array of string; const Properties: Array of string; const PropCallback: TBindingCallback);

C++

__classmethod void __fastcall RegisterCallback(const System::UnicodeString *ClassTypes, const int ClassTypes_High, const System::UnicodeString *Properties, const int Properties_High, const _di_TBindingCallback PropCallback);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Bindings.Outputs.pas
System.Bindings.Outputs.hpp
System.Bindings.Outputs TBindingCallbackFactory

Description

Associates and registers a callback with class types and class properties.

The RegisterCallback method is used to associate and register a callback with class types and class properties. Call RegisterCallback with the following parameters:

Parameter Meaning
ClassTypes Array of class types to associate with the current callback.
Properties Array of class properties to associate with the current callback.
PropCallback Custom TBindingCallback for current class types and class properties.

See Also