System.Bindings.Outputs.TConvertProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TConvertProc = reference to procedure(const InValue: TValue; var OutValue: TValue);

C++

__interface TConvertProc  : public System::IInterface

Properties

Type Visibility Source Unit Parent
anonMethod
class
public
System.Bindings.Outputs.pas
System.Bindings.Outputs.hpp
System.Bindings.Outputs System.Bindings.Outputs

Description

LValue custom conversion routine.

TConvertProc is the bound output or LValue (Left Value) custom conversion routine signature.

For instance, if you have the expression:

  a[2] := (b + c) / 2

then LValue (Left Value) is a[2] and RValue (Right Value) is (b + c) / 2.

See Also