RAD Studio VCL Reference
|
Writes data as characters.
procedure Write(Value: Boolean); override; procedure Write(Value: Char); override; procedure Write(const Value: TCharArray); override; procedure Write(Value: Double); override; procedure Write(Value: Integer); override; procedure Write(Value: Int64); override; procedure Write(Value: TObject); override; procedure Write(Value: Single); override; procedure Write(const Value: string); override; procedure Write(Value: Cardinal); override; procedure Write(Value: UInt64); override; procedure Write(const Format: string; Args: array of const); override; procedure Write(Value: TCharArray; Index: Integer; Count: Integer); override;
virtual __fastcall Write(Boolean Value); virtual __fastcall Write(Char Value); virtual __fastcall Write(const TCharArray Value); virtual __fastcall Write(Double Value); virtual __fastcall Write(int Value); virtual __fastcall Write(Int64 Value); virtual __fastcall Write(TObject * Value); virtual __fastcall Write(Single Value); virtual __fastcall Write(const AnsiString Value); virtual __fastcall Write(unsigned Value); virtual __fastcall Write(UInt64 Value); virtual __fastcall Write(const AnsiString Format, array of const Args); virtual __fastcall Write(TCharArray Value, int Index, int Count);
Write writes the given data type as a text representation to the destination.
This method is functionally identical to the Microsoft .NET method StringWriter.Write.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|