Shows a control in a window.
The handle of the window to access.
The handle of the control to show.
1 if success, 0 otherwise.
import { ControlShowByHandleSync, ControlGetHandleSync, WinGetHandleSync } from '@ahmic/autoit-js';const windowHandle = WinGetHandleSync('Untitled - Notepad');const controlHandle = ControlGetHandleSync(windowHandle, 'Edit1');ControlShowByHandleSync(windowHandle, controlHandle); Copy
import { ControlShowByHandleSync, ControlGetHandleSync, WinGetHandleSync } from '@ahmic/autoit-js';const windowHandle = WinGetHandleSync('Untitled - Notepad');const controlHandle = ControlGetHandleSync(windowHandle, 'Edit1');ControlShowByHandleSync(windowHandle, controlHandle);
https://www.autoitscript.com/autoit3/docs/functions/ControlShow.htm
Shows a control in a window.