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