Vcl.Forms.TCustomForm.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
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Designates methods for storing a form's unpublished data on a stream such as a form file.

DefineProperties calls the inherited method and calls the filer object's DefineProperty method for the PixelsPerInch,and TextHeight properties. TForm descendants can also specify methods that read and write data other than properties by overriding the DefineProperties method.

See Also