System.Classes.TStreamWriter.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(void)/* 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.Classes.pas System.Classes.hpp |
System.Classes | TStreamWriter |
説明
データを、行の終端文字で終わる文字列として書き込みます。
WriteLine は、与えられたデータ型を、行の終端文字で終わるテキスト表現としてストリームに書き込みます。
このメソッドは、機能的には Microsoft .NET の StreamWriter.WriteLine メソッドと等価です。