Paste Bitmap image to this image at offset
Syntax
'Declaration
Public Overloads Sub PasteBitmap( _
ByVal As System.Drawing.Bitmap, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
'Usage
Dim instance As ImageEditor
Dim bmp As System.Drawing.Bitmap
Dim left As System.Integer
Dim top As System.Integer
instance.PasteBitmap(bmp, left, top)
public void PasteBitmap(
System.Drawing.Bitmap ,
System.int ,
System.int
)
public procedure PasteBitmap(
: System.Drawing.Bitmap;
: System.Integer;
: System.Integer
);
public function PasteBitmap(
: System.Drawing.Bitmap,
: System.int,
: System.int
);
public:
void PasteBitmap(
System.Drawing.Bitmap^ ,
System.int ,
System.int
)
Parameters
- bmp
- source Bitmap
- left
- x offset of the bitmap in respect to this image
- top
- y offset of the bitmap in respect to this image
See Also