System.Classes.IVarStreamable.StreamIn

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure StreamIn(var Dest: TVarData; const Stream: TStream);

C++

virtual void __fastcall StreamIn(TVarData &Dest, TStream* const Stream) = 0 ;

Properties

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

Description

Reads in the value of the Variant from a stream.

StreamIn reads the Variant's value from a stream and fills in a TVarData data structure to reflect the value.

Dest is the TVarData that is filled in by StreamIn.

Stream is a stream that is positioned so that the next value that can be read from the stream is the value of the Variant.

See Also