[DllImportAttribute("User32.dll", SetLastError = true)]
public static bool InvalidateRgn(
IntPtr hWnd,
IntPtr hRgn,
bool erase
)
<DllImportAttribute("User32.dll", SetLastError := true>]
Public Shared Function InvalidateRgn (
hWnd As IntPtr,
hRgn As IntPtr,
erase As Boolean
) As Boolean
Dim hWnd As IntPtr
Dim hRgn As IntPtr
Dim erase As Boolean
Dim returnValue As Boolean
returnValue = User32.InvalidateRgn(hWnd,
hRgn, erase)
public:
[DllImportAttribute(L"User32.dll", SetLastError = true)]
static bool InvalidateRgn(
IntPtr hWnd,
IntPtr hRgn,
bool erase
)
[<DllImportAttribute("User32.dll", SetLastError = true)>]
static member InvalidateRgn :
hWnd : IntPtr *
hRgn : IntPtr *
erase : bool -> bool
No code example is currently available or this language may not be supported.
[Missing <param name="erase"/> documentation for "M:DevCase.Win32.NativeMethods.User32.InvalidateRgn(System.IntPtr,System.IntPtr,System.Boolean)"]