AutoHotKey(오토핫키) 설명서 WinGetClass

Posted by 발전소장
2014. 8. 14. 14:29 AutoHotKey/Commands

WinGetClass

지정된 윈도우의 클래스명을 취득

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

Parameters

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

Remarks

윈도우의 종류를 나타내는 클래스명을 취득할 수 있다.

취득한 클래스명은, 윈도우 관련 커멘드의WinTitle(을)를 지정하는 (곳)중에 「ahk_class %OutputVar%」(와)과 같이 해 사용할 수 있다.

Related

WinGet, WinGetTitle

Example(s)

WinGetClass, class, A
MsgBox, The active window's class is "%class%".