System.Bindings.Outputs.TConvertProc2

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

TConvertProc2 = reference to procedure(const InValue: TValue; ATo: PTypeInfo; var OutValue: TValue);

C++

__interface TConvertProc2  : public System::IInterface

プロパティ

種類 可視性 ソース ユニット
anonMethod
class
public
System.Bindings.Outputs.pas
System.Bindings.Outputs.hpp
System.Bindings.Outputs System.Bindings.Outputs


説明

バインドされた出力つまり LValue(左辺値)のカスタム変換ルーチン シグネチャです。

たとえば、次のような式があるとします。

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

この場合、LValue(左辺値)は a[2]RValue(右辺値)は (b + c) / 2 になります。

関連項目