鼠标右键双击 - RightDoubleClick
函数简介
鼠标右键双击。
接口名称
RightDoubleClick
DLL调用
int RightDoubleClick(long ola);
参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| ola | 长整数型 | OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。 |
示例
C++
long instance = CreateCOLAPlugInterFace();
// 移动到目标位置后右键双击
MoveTo(instance, 500, 300);
RightDoubleClick(instance);
Python
# 待补充
返回值
1 成功,0 失败。
