System.JSON.Writers.TASCIIStreamWriter.WriteLine

提供: RAD Studio API Documentation
2018年7月5日 (木) 18:36時点におけるBuildBot (トーク | 投稿記録)による版 (ページの作成:「{{#lst:API:System.JSON.Writers.TASCIIStreamWriter.WriteLine|api}} ==説明== {{#lsth:API:System.JSON.Writers.TASCIIStreamWriter.WriteLine|説明}}」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

Delphi

procedure WriteLine; override;
procedure WriteLine(Value: Boolean); override;
procedure WriteLine(Value: Char); override;
procedure WriteLine(const Value: TCharArray); override;
procedure WriteLine(Value: Double); override;
procedure WriteLine(Value: Integer); override;
procedure WriteLine(Value: Int64); override;
procedure WriteLine(Value: TObject); override;
procedure WriteLine(Value: Single); override;
procedure WriteLine(const Value: string); override;
procedure WriteLine(Value: Cardinal); override;
procedure WriteLine(Value: UInt64); override;
procedure WriteLine(const Format: string; Args: array of const); override;
procedure WriteLine(const Value: TCharArray; Index, Count: Integer); override;

C++

virtual void __fastcall WriteLine()/* overload */;
virtual void __fastcall WriteLine(bool Value)/* overload */;
virtual void __fastcall WriteLine(System::WideChar Value)/* overload */;
virtual void __fastcall WriteLine(const System::DynamicArray<System::WideChar> Value)/* overload */;
virtual void __fastcall WriteLine(double Value)/* overload */;
virtual void __fastcall WriteLine(int Value)/* overload */;
virtual void __fastcall WriteLine(__int64 Value)/* overload */;
virtual void __fastcall WriteLine(System::TObject* Value)/* overload */;
virtual void __fastcall WriteLine(float Value)/* overload */;
virtual void __fastcall WriteLine(const System::UnicodeString Value)/* overload */;
virtual void __fastcall WriteLine(unsigned Value)/* overload */;
virtual void __fastcall WriteLine(unsigned __int64 Value)/* overload */;
virtual void __fastcall WriteLine(const System::UnicodeString Format, System::TVarRec *Args, const int Args_High)/* overload */;
virtual void __fastcall WriteLine(const System::DynamicArray<System::WideChar> Value, int Index, int Count)/* overload */;

プロパティ

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

説明

データを、行の終端文字で終わる文字列として書き込みます。

System.JSON.Writers.TASCIIStreamWriter.WriteLine は System.Classes.TStreamWriter.WriteLine を継承しています。以下の内容はすべて System.Classes.TStreamWriter.WriteLine を参照しています。

データを、行の終端文字で終わる文字列として書き込みます。

WriteLine は、与えられたデータ型を、行の終端文字で終わるテキスト表現としてストリームに書き込みます。

このメソッドは、機能的には Microsoft .NET の StreamWriter.WriteLine メソッドと等価です。

関連項目