System.Classes.TStringStream.Encoding

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Encoding: TEncoding read FEncoding;

C++

__property System::Sysutils::TEncoding* Encoding = {read=FEncoding};

Properties

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

Description

Represents the encoding used internally by the TStringStream instance to store the data.

Encoding represents the encoding that is used to get the corresponding array of bytes from a given string, or to obtain the corresponding string from the contained array of bytes. (A string stream contains an array of bytes.)

The encoding of a stream string is set in the constructor (you can specify what encoding to use).

See Also