MaskBlt (gdi32)
Last changed: -93.37.176.74

.
Summary
TODO - a short description

C# Signature:

[DllImport("gdi32.dll", SetLastError=true)]
static extern bool MaskBlt(
  IntPtr     hdcDest,
  int     xDest,
  int     yDest,
  int     width,
  int     height,
  IntPtr     hdcSrc,
  int     xSrc,
  int     ySrc,
  IntPtr hbmMask,
  int     xMask,
  int     yMask,
  uint   rop);

VB Signature:

Declare Function MaskBlt Lib "gdi32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

The MaskBlt function combines the color data for the source and destination bitmaps using the specified mask and raster operation.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
MaskBlt on MSDN