REST.JsonReflect.TJSONUnMarshal.SetField

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

Delphi

procedure SetField(Data: TObject; Field: string; Value: string; IsNum: Boolean); overload;
procedure SetField(Data: TObject; Field: string; Value: Boolean); overload;
procedure SetField(Data: TObject; Field: string; Value: TObject); overload;

C++

void __fastcall SetField(System::TObject* Data, System::UnicodeString Field, System::UnicodeString Value, bool IsNum)/* overload */;
void __fastcall SetField(System::TObject* Data, System::UnicodeString Field, bool Value)/* overload */;
void __fastcall SetField(System::TObject* Data, System::UnicodeString Field, System::TObject* Value)/* overload */;

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
REST.JsonReflect.pas
REST.JsonReflect.hpp
REST.JsonReflect TJSONUnMarshal


説明

SetField メソッドは、指定されたオブジェクト Data のフィールド Field に指定された値 Value を設定します。

文字列BooleanTObject という 3 種類の型に合わせて、異なる 3 つのオーバーロード メソッドが用意されています。

関連項目