AutoHotKey(오토핫키) 설명서 ControlGetFocus

Posted by 발전소장
2014. 8. 13. 20:43 AutoHotKey/Commands

ControlGetFocus

지정 윈도우의 현재 포커스를 가지고 있는 컨트롤의ClassNN(을)를 취득

ControlGetFocus, OutputVar [WinTitle, WinText, ExcludeTitle, ExcludeText]

Parameters

인수명설명
OutputVar 결과를 격납하는 변수명.
WinTitle 윈도우 타이틀 등.
윈도우 지정의 방법참조.
WinText 윈도우에 포함되는 텍스트
ExcludeTitle 제외 타이틀
ExcludeText 제외 텍스트

ErrorLevel

성공하면 「0」, 실패하면 「1」

Related

ControlFocus, ControlMove, ControlClick, ControlGetText, ControlSetText, ControlSend

Example(s)

ControlGetFocus, OutputVar, Untitled - Notepad
if ErrorLevel = 0
	MsgBox, Control with focus = %OutputVar%
else
	MsgBox, The target window doesn't exist or none of its controls has input focus.