System.Classes.TStringWriter.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 */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.Classes.pas System.Classes.hpp |
System.Classes | TStringWriter |
Description
Writes data as characters followed by line terminator.
WriteLine writes to the destination the given data type as a text representation followed by a line terminator.
This method is functionally identical to the Microsoft .NET method StringWriter.WriteLine.
See Also
Code Examples