System.Classes.TStream.Position

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Position: Int64 read GetPosition write SetPosition;

C++

__property __int64 Position = {read=GetPosition, write=SetPosition};

Properties

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

Description

Indicates the current offset into the stream for reading and writing.

Use Position to obtain the current position of the stream. This is the number of bytes from the beginning of the streamed data.

See Also

Code Examples