移动 - MoveTo
函数简介
把鼠标移动到目的点(x, y)
接口名称
int MoveTo(int x, int y)
DLL调用
int MoveTo(long ola, int x, int y)
参数定义:
ola
(长整型数): OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。x
(整型数): 目标X坐标。y
(整型数): 目标Y坐标。
示例:
待补充...
COM调用
int MoveTo(int x, int y)
参数定义:
x 整型数: X坐标
y 整型数: Y坐标
示例:
ret = ola.MoveTo(200, 300)
返回值
整型数:
0 : 失败
1 : 成功