API:System.Classes.TStringStream

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TBytesStreamSystem.Classes.TMemoryStreamSystem.Classes.TCustomMemoryStreamSystem.Classes.TStreamSystem.TObjectTStringStream

Delphi

TStringStream = class(TBytesStream)

C++

class PASCALIMPLEMENTATION TStringStream : public TBytesStream

Properties

Type Visibility Source Unit Parent
class public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

TBytesStream is a stream that stores its data in bytes.

System.Classes.TStringStream inherits from System.Classes.TBytesStream. All content below this line refers to System.Classes.TBytesStream.

TBytesStream is a stream that stores its data in bytes.

Use TBytesStream to store data as bytes in a memory buffer.

Memory streams are useful as intermediary objects that can hold information as well as read it from or write it to another storage medium. They provide a useful format for comparing the contents of streams, or for manipulating data that is stored in a less accessible medium.

See Also