Stretches a given surfaces on the current surface.
Form 1:
void __fastcall StretchCopySurface(const TRect destRect, TCustomIvorySurface* surface);
Form 2:
void __fastcall StretchCopySurface(const TRect destRect, TCustomIvorySurface* surface, const TRect rect);
Description
Use Form 1 to stretch-copy the full content of the given surface onto the current surface. Use Form 2 to stretch-copy a portion of the given surface onto the current surface. destRect specifies the rectangle on which the source surface is going to be stretched. surface is a pointer to the source surface. rect specifies the rectangle bounding the portion of the source surface that will be stretched. This parameter can be omitted; in this case, the full surface will be stretched. StretchCopySurface is a bit slower than CopySurface.