| Unit: |
SDL_colorscale |
| Class: |
TColorScale |
| Declaration: |
procedure Assign(Source: TPersistent); |
The Assign method assigns one TColorScale instance to another. Note that the position, the height and the width of TColorScale 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. |
|