We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to operate with handle, I don't understand what the parameter h_ctrl means .
handle
h_ctrl
def control_click_by_handle(hwnd, h_ctrl, **kwargs): """ :param handle: :param kwargs: :return: """ button = kwargs.get("button", "left") clicks = kwargs.get("clicks", 1) x = kwargs.get("x", INTDEFAULT) y = kwargs.get("y", INTDEFAULT) ret = AUTO_IT.AU3_ControlClickByHandle(HWND(hwnd), HWND(h_ctrl), LPCWSTR(button), INT(clicks), INT(x), INT(y)) return ret
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I try to operate with
handle
, I don't understand what the parameterh_ctrl
means .The text was updated successfully, but these errors were encountered: