Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than gdi32, prefix the name with the module name and a period.
CreateRectRgn (gdi32)
.
C# Signature:
[DllImport("gdi32.dll")]
static extern IntPtr CreateRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
VB.NET Signature:
<DllImport("gdi32.dll")> _
Private Shared Function CreateRectRgn(ByVal nLeftRect As Integer, ByVal nTopRect As Integer, ByVal nRightRect As Integer, ByVal nBottomRect As Integer) As IntPtr
End Function
static extern IntPtr CreateRectRgn(int nLeftRect, int nTopRect, int nRightRect,
int nBottomRect);
// This paints the current form black
IntPtr wDc = GetDC(this.Handle);
int mx = Screen.PrimaryScreen.WorkingArea.Width;
int my = Screen.PrimaryScreen.WorkingArea.Height;
IntPtr brush = CreateSolidBrush(0x0); // black, of format : //0x00bbggrr
FillRgn(wDc, CreateRectRgn(0,0,mx,my), brush);
DeleteObject(brush);
Alternative Managed API:
No managed API. GraphicsPath can be used to create a similar functionality.
Do you know one? Please contribute it!
The CreateRectRgn API
7/25/2013 1:41:33 AM - -88.159.15.38
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).