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 { ControlShowByHandle, ControlGetHandle, WinGetHandle } from '@ahmic/autoit-js';const windowHandle = WinGetHandle('Untitled - Notepad');const controlHandle = ControlGetHandle(windowHandle, 'Edit1');ControlShowByHandle(windowHandle, controlHandle); Copy
import { ControlShowByHandle, ControlGetHandle, WinGetHandle } from '@ahmic/autoit-js';const windowHandle = WinGetHandle('Untitled - Notepad');const controlHandle = ControlGetHandle(windowHandle, 'Edit1');ControlShowByHandle(windowHandle, controlHandle);
https://www.autoitscript.com/autoit3/docs/functions/ControlShow.htm
Shows a control in a window.