System.Classes.IVarStreamable.StreamOut

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure StreamOut(const Source: TVarData; const Stream: TStream);

C++

virtual void __fastcall StreamOut(const TVarData &Source, TStream* const Stream) = 0 ;

Properties

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

Description

Writes the value of the Variant to a stream.

StreamIn writes the value from a TVarData value to a specified stream.

Source is the TVarData that stores the data for the Variant that needs to write its value.

Stream is a stream to which StreamOut writes the value stored in Source.

See Also