Helper class for TWriter component
Namespace: FilerHelper
Delphi
|
type
TWriterHelper = class helper for TWriter
end;
|
|
Name
|
Description
|
|
WritePersistent(TPersistent)
|
Writes the TPersistent object specified by Instance to a stream
Use the WritePersistent method when you want to write a defined property (specified by TFiler.DefineProperties method) that is a TPersistent to a stream
|
|
WritePropertiesOnly(TPersistent)
|
Represents method WritePropertiesOnly(TPersistent).
|
|
WriteRootPersistent(TPersistent)
|
Writes the TPersistent object specified by Instance to 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 the Instance object as the top-level object of a stream. For example, as a SaveToStream/LoadFromStream method pair for the Instance
|
|
Top
|