OR the working image with the specified Bitmap image with offset
Syntax
'Declaration
Public Overloads Sub OrBitmap( _
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.OrBitmap(bmp, left, top)
public void OrBitmap(
System.Drawing.Bitmap ,
System.int ,
System.int
)
public procedure OrBitmap(
: System.Drawing.Bitmap;
: System.Integer;
: System.Integer
);
public function OrBitmap(
: System.Drawing.Bitmap,
: System.int,
: System.int
);
public:
void OrBitmap(
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