Show: Delphi
C++
Display Preferences
System.Classes.TStream.Size
From XE2 API Documentation
Delphi
property Size: Int64 read GetSize write SetSize64;
C++
__property __int64 Size = {read=GetSize, write=SetSize64};
Contents |
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | public | System.Classes.pas System.Classes.hpp |
System.Classes | TStream |
Description
Indicates the size in bytes of the stream.
Use Size to find the size of the stream. Size is used internally in routines that read and write to and from the stream. Setting the Size property of TStream does nothing. Some descendants of TStream override this property to allow applications to change the size of the resource accessed using the stream.
See Also
Code Examples