TCustomBitmap32.DrawTo

procedure DrawTo(Dst: TCustomBitmap32); overload;

procedure DrawTo(Dst: TCustomBitmap32; DstX, DstY: Integer); overload;

procedure DrawTo(Dst: TCustomBitmap32; DstX, DstY: Integer; const SrcRect: TRect); overload;

procedure DrawTo(Dst: TCustomBitmap32; const DstRect: TRect); overload;

procedure DrawTo(Dst: TCustomBitmap32; const DstRect, SrcRect: TRect); overload;

Description

The DrawTo method renders the bitmap (or part of it specified by SrcRect parameter) onto another bitmap specified by Dst parameter. It works similar to Draw method but instead of copying data from some other source, the bitmap renders itself to destination object. See the Draw description for details.

See Also

TCustomBitmap32, Draw, Rectangle Types