TCustomIvorySurface::TileCopySurface

Tiles a given surfaces on the current surface.

Form 1:

void __fastcall TileCopySurface(const TRect destRect, TCustomIvorySurface* surface);

Form 2:

void __fastcall TileCopySurface(const TRect destRect, TCustomIvorySurface* surface,
                                   const TRect rect);

Description

Use Form 1 to tile-copy the full content of the given surface onto the current surface. Use Form 2 to tile-copy a portion of the given surface onto the current surface. destRect specifies the rectangle on which the source surface is going to be tiled. surface is a pointer to the source surface. rect specifies the rectangle bounding the portion of the source surface that will be tiled. This parameter can be omitted; in this case, the full surface will be tiled. TileCopySurface calls CopySurface several times.

Back to TCustomIvorySurface