type TScaleLine = class(TGraphicControl) public constructor Create(aOwner: TComponent); override; procedure UpdateWidth; published property Scale: Single; property Number: SmallInt Default 3; property BlackWhite: Boolean Default FALSE; end;
The Create method creates an instance of TScaleLine. Call Create to instantiate a TScaleLine at runtime. For TScaleLine objects placed on a form or data module at design time, Create is called automatically.
Call this method if you wish to set control's width to minimal width it needs for show itself. This method will be called automatically when you change Number property.
This property defines scale the TScaleList will display.
Thsi property defines amount of white/black blocks will be drawn. Each block has fized, ten millimetres lenght.
This property defines what rectangle begins black white series. By Default serie begins with white rectangle.