[DllImportAttribute("User32.dll", SetLastError = true)]
public static bool InvalidateRect(
SafeHandle hWnd,
ref IntPtr refRect,
bool erase
)
<DllImportAttribute("User32.dll", SetLastError := true>]
Public Shared Function InvalidateRect (
hWnd As SafeHandle,
ByRef refRect As IntPtr,
erase As Boolean
) As Boolean
Dim hWnd As SafeHandle
Dim refRect As IntPtr
Dim erase As Boolean
Dim returnValue As Boolean
returnValue = User32.InvalidateRect(hWnd,
refRect, erase)
public:
[DllImportAttribute(L"User32.dll", SetLastError = true)]
static bool InvalidateRect(
SafeHandle^ hWnd,
IntPtr% refRect,
bool erase
)
[<DllImportAttribute("User32.dll", SetLastError = true)>]
static member InvalidateRect :
hWnd : SafeHandle *
refRect : IntPtr byref *
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.InvalidateRect(System.Runtime.InteropServices.SafeHandle,System.IntPtr@,System.Boolean)"]