페이지 트리

버전 비교

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

...

코드 블럭
languagevb
titleSyntax
public void ControlRefreshData ( 
	string controlID, option bool isAllSelected)
)


Parameters

controlId

Type: String

조건 컨트롤의 id



isAllSelected

Type: Bool (옵션)

MultiComboBox의 경우 True일경우 전체 선택

단일콤보일 경우 첫번째 값 선택

  


Return Value

Type:  void


코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
Sub ControlRefreshData()

    Dim mxmodule As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6iMATRIX.ExcelModule").Object

	mxmodule.xapi.ControlRefreshData "SelectComboBox2"
	'mxmodule.xapi.ControlRefreshData "SelectComboBox2", True
	
End Sub