[]
        
(Showing Draft Content)

GrapeCity.Documents.Imaging.GcBitmap.BitBlt

BitBlt Method

BitBlt(GcBitmap, int, int, Rectangle?, int, int, int, int)

Performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source bitmap into the current bitmap.

Declaration
public void BitBlt(GcBitmap srcBitmap, int xDst, int yDst, Rectangle? clipRect = null, int width = 2147483647, int height = 2147483647, int xSrc = 0, int ySrc = 0)
Public Sub BitBlt(srcBitmap As GcBitmap, xDst As Integer, yDst As Integer, Optional clipRect As Rectangle? = Nothing, Optional width As Integer = 2147483647, Optional height As Integer = 2147483647, Optional xSrc As Integer = 0, Optional ySrc As Integer = 0)
Parameters
Type Name Description
GcBitmap srcBitmap

The source bitmap.

int xDst

The x-coordinate, in pixels, of the upper-left corner of the destination rectangle.

int yDst

The y-coordinate, in pixels, of the upper-left corner of the destination rectangle.

Rectangle? clipRect

The affected rectangle of the destination GcBitmap.

int width

The width, in pixels, of the source and destination rectangles.

int height

The height, in pixels, of the source and destination rectangles.

int xSrc

The x-coordinate, in pixels, of the upper-left corner of the source rectangle.

int ySrc

The y-coordinate, in pixels, of the upper-left corner of the source rectangle.