FMX.Types.TPosition.DefineProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DefineProperties(Filer: TFiler); override;

C++

virtual void __fastcall DefineProperties(System::Classes::TFiler* Filer);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Types.pas
FMX.Types.hpp
FMX.Types TPosition

Description

Provides methods to read and write unpublished data.

DefineProperties is implemented so that the position is written as a single string in the .fmx, not as separate X and Y values.

DefineProperties uses the methods of the filer passed as the Filer parameter to assign methods that can load and save the Point property.

Override DefineProperties to persist unpublished properties. Call the DefineBinaryProperty or DefineProperty method of the Filer parameter to assign methods that load or save property values.

Note: When overriding this method, call the parent class' DefineProperties method first.

See Also