在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
GetWindowRect,用于取窗口矩形坐标。返回值类型:布尔型(LongBool)。执行成功返回真(True),否则返回假(False);参数1类型:整数型(HWND),目标窗口的窗口句柄;参数2类型:坐标结构(RECT),目标窗口的坐标结构地址。在Windows SDK中的函数原型: RECT定义: typedef struct _RECT { // rc
例如: var
R: TRect;
begin
GetWindowRect(Form1的句柄, R);
ShowMessageFmt('宽: %d, 高: %d, 横坐标: %d, 纵坐标: %d', [R.Right-R.Left,
R.Bottom-R.Top,R.Left,R.Top]);
end;
var hwnd:HWND; R:TRect; begin hwnd:=FindWindow('SciCalc','计算器'); GetWindowRect(hwnd,R); lable1.Caption := IntToStr(R.Left)+','+ IntToStr(R.Top)+'/'+ IntToStr(R.Right)+ ','+ IntToStr(R.Bottom ); end;
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论