System.JSON.Writers.TJsonTextWriter.Formatting

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

Delphi

property Formatting: TJsonFormatting read FFormatting write FFormatting;

C++

__property System::Json::Types::TJsonFormatting Formatting = {read=FFormatting, write=FFormatting, nodefault};

プロパティ

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


説明

JSON テキスト出力の書式をどう整えるかを示します。

取り得る値には None、Indented があります。

  • None: デフォルト値です。特別な書式設定は行われません。
  • IndentedIndentation および IndentChar の設定に応じて子オブジェクトがインデントされます。

TJsonTextWriter インスタンスの作成時には、FormattingNone に設定されます。

関連項目