메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Autoit ControlSend()

데브카페
Devcafe (토론 | 기여)님의 2024년 10월 5일 (토) 02:12 판 (새 문서: <source lang=sql> ControlSend("[TITLE:Shell]", "", "x", "{F2}{2}{F2}") </source> ID - The internal control ID. The Control ID is the internal numeric identifier that windows gives to each control. It is generally the best method of identifying controls. In addition to the AutoIt Window Info Tool, other applications such as screen readers for the blind and Microsoft tools/APIs may allow you to get this Control ID TEXT - The text on a control, for example "&Next" on a butto...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

ControlSend("[TITLE:Shell]", "", "x", "{F2}{2}{F2}")

ID - The internal control ID. The Control ID is the internal numeric identifier that windows gives to each control. It is generally the best method of identifying controls. In addition to the AutoIt Window Info Tool, other applications such as screen readers for the blind and Microsoft tools/APIs may allow you to get this Control ID

   TEXT - The text on a control, for example "&Next" on a button
   CLASS - The internal control classname such as "Edit" or "Button"
   CLASSNN - The ClassnameNN value as used in previous versions of AutoIt, such as "Edit1"
   NAME - The internal .NET Framework WinForms name (if available)
   REGEXPCLASS - Control classname using a regular expression
   INSTANCE - The 1-based instance when all given properties match.

Comments