procedure MoveTo(X, Y: Integer);
procedure MoveToX(X, Y: TFixed);
procedure MoveToF(X, Y: Single);
Shifts current raster to specified position, analogous to MoveTo method of standard TCanvas.
Each bitmap maintains separate raster positions for integer and fixed point coordinates. MoveTo affects the integer raster position, while MoveToX and MoveToF affect the fixed-point raster position.
Raster position is applicable only to MoveTo, LineTo methods and some polygon drawing routines, which use it internally, it is not changed neither by Line methods nor by any other method.