Delphi WinAPI GetWindowRect - 检索指定窗口的边框的尺寸。尺寸以相对于屏幕左上角的屏幕坐标表示。
原型:
BOOL GetWindowRect( HWND hWnd, LPRECT lpRect );
参数:
- hWnd(Type: HWND):窗口句柄
- lpRect(Type: LPRECT):指向接收窗口左上角和右下角屏幕坐标的RECT结构的指针。
返回值(Type: BOOL):
- 如果函数成功,则返回值为非零。
- 如果函数失败,则返回值为零。要获取扩展错误信息,请调用GetLastError。
附上Delphi中TRect的结构(Uses Types):
PRect = ^TRect; TRect = packed record case Integer of 0: (Left, Top, Right, Bottom: Longint); 1: (TopLeft, BottomRight: TPoint);
创建时间:2021.08.02 更新时间: