페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
languagevb
titleSyntax
public void MoveWindow( 
	int hWnd,
	int left,
	int top,
	int width,
	int height,
	bool repaint
)



Parameters

hWnd

Type: int

대상의 Window 핸들

left

Type: int

대상의 이동 left 값

top

Type: int

대상의 위치이동 top 값

width

Type: int

대상의 사이즈변경 너비

height

Type: int

대상의 사이즈변경 높이

repaint

Type: bool

조건 컨트롤 시트의 name

...

코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
Sub MoveWindow()
    Dim mxmodule As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object


    result = mxmodule.xapi.MoveWindow(Application.Hwnd, 100, 100, 200, 300, True)


    '오류 확인
    If result = False Then
        MsgBox "fail"
    Else
        MsgBox "success"
    End If
    
End Sub

...