System.Classes.TWriter.WriteStr
Delphi
procedure WriteStr(const Value: AnsiString);
C++
void __fastcall WriteStr(const System::AnsiString Value);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.Classes.pas System.Classes.hpp |
System.Classes | TWriter |
Description
Writes raw data to the writer object's stream.
Do not call WriteStr directly. WriteStr is for internal use by certain components. WriteStr writes the string passed in Value to the writer object's stream.
Warning: Always use WriteString for writing component strings to streams. WriteStr can corrupt data if not used correctly.