In This Topic
Performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source bitmap into the current bitmap.
Syntax
'Declaration
Public Sub BitBlt( _
ByVal As GcBitmap, _
ByVal As System.Integer, _
ByVal As System.Integer, _
Optional ByVal As System.Nullable(Of Rectangle), _
Optional ByVal As System.Integer, _
Optional ByVal As System.Integer, _
Optional ByVal As System.Integer, _
Optional ByVal As System.Integer _
)
public void BitBlt(
GcBitmap ,
System.int ,
System.int ,
System.Nullable<Rectangle> ,
System.int ,
System.int ,
System.int ,
System.int
)
Parameters
- srcBitmap
- The source bitmap.
- xDst
- The x-coordinate, in pixels, of the upper-left corner of the destination rectangle.
- yDst
- The y-coordinate, in pixels, of the upper-left corner of the destination rectangle.
- clipRect
- The affected rectangle of the destination GcBitmap.
- width
- The width, in pixels, of the source and destination rectangles.
- height
- The height, in pixels, of the source and destination rectangles.
- xSrc
- The x-coordinate, in pixels, of the upper-left corner of the source rectangle.
- ySrc
- The y-coordinate, in pixels, of the upper-left corner of the source rectangle.
See Also