System.JSON.Writers.TJsonTextWriter.WriteComment

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

Delphi

procedure WriteComment(const Comment: string); override;

C++

virtual void __fastcall WriteComment(const System::UnicodeString Comment);

プロパティ

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


説明

指定されたテキストをコメントとして書き込みます。

パラメータ:

  • Comment: JSON データ内にコメントとして表示したいテキストです。

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

  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"
    }
  ]
}

関連項目