반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Blocks
- 식
- IfInString
- StringGetPos
- ControlGetText
- 배열
- autohotkey
- API
- EnvMult
- SetControlDelay
- if(식)
- EnvDiv
- IfWinExist
- SetEnv
- Menu
- Threads
- Var:=식
- DetectHiddenWindows
- SetKeyDelay
- MouseClick
- 함수
- ControlSend
- if
- EnvSub
- SetTitleMatchMode
- EnvAdd
- SetMouseDelay
- 식의 설명
- IF (식)
- EnvSet
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
ControlMove 컨트롤의 위치와 사이즈를 변경 본문
반응형
ControlMove
컨트롤의 위치와 사이즈를 변경
ControlMove, Control, X, Y, Width, Height [, WinTitle, WinText, ExcludeTitle, ExcludeText]
Parameters
인수명 | 설명 |
---|---|
Control | 컨트롤을 지정. 윈도우 지정의 방법참조. |
X, Y | X좌표와Y좌표를 친윈도우의 좌상으로부터의 상대 위치에서 지정. |
Width, Height | 폭과 높이를 지정. |
WinTitle | 윈도우 타이틀 등. 윈도우 지정의 방법참조. |
WinText | 윈도우에 포함되는 텍스트 |
ExcludeTitle | 제외 타이틀 |
ExcludeText | 제외 텍스트 |
ErrorLevel
성공시는 「0」, 실패시는 「1」.
Remarks
To improve reliability, a delay is done automatically after every use of this command. That delay can be changed via SetControlDelay.
Window titles and text are always case sensitive. Hidden windows are not detected unless DetectHiddenWindows has been turned on.
Example(s)
SetTimer, ControlMoveTimer InputBox, OutputVar, My Input Box return ControlMoveTimer: IfWinNotExist, My Input Box, , return ; Otherwise the above set the "last found" window for us: SetTimer, ControlMoveTimer, off WinActivate ControlMove, OK, 10, , 200 ; Move the OK button to the left and increase its width. return
반응형
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
ControlSetText 컨트롤의 텍스트를 변경 (0) | 2007.11.05 |
---|---|
ControlSend 키 입력을 지정의 윈도우나 컨트롤에 송신 (0) | 2007.11.05 |
ControlGetText 컨트롤상의 텍스트를 취득한다 (0) | 2007.11.05 |
ControlGetPos 컨트롤의 위치와 사이즈를 취득 (0) | 2007.11.05 |
ControlGetFocus 지정 윈도우의 현재 포커스를 가지고 있는 컨트롤의ClassNN(을)를 취득 (0) | 2007.11.05 |
Comments