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