@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
15 lines (12 loc) • 670 B
JavaScript
import './@types/point.js';
import './@types/rect.js';
import { INT, HWND, LPCWSTR } from './@types/win32.js';
import { autoit } from './lib/autoit.js';
function ControlSetTextByHandleSync(windowHandle, controlHandle, value) {
return autoit.invoke('AU3_ControlSetTextByHandle', INT, [HWND, HWND, LPCWSTR], [windowHandle, controlHandle, value]);
}
function ControlSetTextByHandle(windowHandle, controlHandle, value) {
return autoit.invokeAsync('AU3_ControlSetTextByHandle', INT, [HWND, HWND, LPCWSTR], [windowHandle, controlHandle, value]);
}
export { ControlSetTextByHandle, ControlSetTextByHandleSync };
//# sourceMappingURL=control-set-text-by-handle.js.map