| Unit: |
SDL_gauge |
| Class: |
TScaleGauge |
| Declaration: |
procedure Assign(Source: TPersistent); |
The Assign method assigns one TGauge instance to another. Note that the position, the height and the width of TGauge are not copied from the source.
| Hint: |
In general, the statement Destination := Source; is not the same as the statement Destination.Assign(Source);. The first statement makes Destination refer to the same object as Source, whereas the second statement copies the contents of the object referenced by Source into the object referenced by Destination. |
|