System.Classes.TWriter.WriteUTF8Str

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WriteUTF8Str(const Value: string); inline;

C++

void __fastcall WriteUTF8Str(const System::UnicodeString Value);

Properties

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

Description

Writes the UTF8 encoded string passed in Value to the writer object's stream.

WriteUTF8Str is used internally by the component streaming system to write UTF8 encoded string properties of components to the writer object's stream.

WriteUTF8Str advances the current position after the last written byte.

Notice that WriteUTF8Str writes no more that 255 bytes and does not write any value-type indicator.

See Also