Helper class for TReader component
Namespace: FilerHelper
Delphi
|
type
TReaderHelper = class helper for TReader
end;
|
|
Name
|
Description
|
|
ReadPersistent(TPersistent)
|
Reads the TPersistent object specified by Instance from a stream
Use the ReadPersistent method when you want to read a defined property (specified by TFiler.DefineProperties method) that is a TPersistent from a stream
|
|
ReadRootPersistent(TPersistent)
|
Reads the TPersistent object specified by Instance from a stream as the root object
Warning
|
Do not use this method when you are trying to write a TPersistent object out as part of another component. This method is intended for when you want to save and load the Instance object as the top-level object of a stream. For example, as a SaveToStream/LoadFromStream method pair for the Instance
|
|
Top
|