UNPKG

@ahmic/autoit-js

Version:
15 lines (12 loc) 670 B
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