Design time only properties

Top  Previous  Next

DFM-Translator > Special assignments > Design time only properties

A special case when converting DFM files are design time properties Such properties are in TCustomForm

 

PixelsPerInch

TextHeight

IgnoreFontProperty

 

They are useful at design time only and cannot be set at runtime at all. Delphi2Cpp suppresses the output of these frequent properties by means of the pre-defined procedures:

 

 

void AssignFormTextHeight(TForm* xpForm, int xi);

void AssignFormPixelsPerInch(TForm* xp, int xi);

void AssignDataModulePixelsPerInch(TDataModule* xp, int xi);

 

 



This page belongs to the Delphi2Cpp Documentation

Delphi2Cpp home  Content