System.Classes.TStringStream.WriteString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WriteString(const AString: string);

C++

void __fastcall WriteString(const System::UnicodeString AString);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes TStringStream

Description

Concatenates a specified string to the current position in the string stream, and updates the current position accordingly.

Use WriteString to replace the end of the string from the current position on with the string specified by the AString parameter. WriteString changes the Size property to reflect the new length of the DataString.

See Also