조건 컨트롤의 속성 값을 가져옵니다.


public object GetControlProperty ( 
	string id,
	string Name
)


Parameters

id

Type: String

조건 컨트롤의 id

Name

Type: String

조건 컨트롤의 속성 이름

Return Value

Type:  Object

정상일 경우 : Object 

오류 일경우 : null


Sub GetControlProperty()

    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object
	Dim val As String

    val = mxmodule.xapi.GetControlProperty("SelectComboBox1", "LinkedCellValue2")


	If val = "U" Then
  		MsgBox "GetControlProperty Success"
	
End Sub