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