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