System.JSON.Writers.TJsonWriter.WriteEndObject

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

Delphi

procedure WriteEndObject; virtual;

C++

virtual void __fastcall WriteEndObject();

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
System.JSON.Writers.pas
System.JSON.Writers.hpp
System.JSON.Writers TJsonWriter


説明

JSON オブジェクトの終了を書き込みます。

WriteEndObject の使い方は、以下のコードを参照してください。

  Writer.WriteStartObject;
  Writer.WritePropertyName('colors');
  Writer.WriteStartArray;
  Writer.WriteStartObject;
  Writer.WriteComment('Hexadecimal value for the red color');
  Writer.WritePropertyName('name');
  Writer.WriteValue('red');
  Writer.WritePropertyName('hex');
  Writer.WriteValue('#f00');
  Writer.WriteEndObject;
  Writer.WriteEndArray;
{
  "colors": [
    {
      /*Hexadecimal value for the red color*/
      "name": "red",
      "hex": "#f00"
    }
  ]
}

関連項目