添加矩形到指定窗口的更新区域
#Include <WinAPI.au3>
_WinAPI_InvalidateRect($hWnd [, $tRect = 0 [, $fErase = True]])
| $hWnd | 窗口句柄 |
| $tRect | [可选参数] $tagRECT 结构,包含矩形添加到更新区域的客户端坐标 如果此参数为 0, 整个客户区被添加到更新区域. |
| $fErase | [可选参数] 指定更新区域时是否删除背景 如果参数为 True ,背景被删除时, BeginPaint 函数被调用 如果此参数为 False, 背景保持不变 |
| 成功: | 返回 True |
| 失败: | 返回 False |
在MSDN中搜索