페이지 트리

버전 비교

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

...

코드 블럭
languagevb
titleSyntax
public void SetControlSheetProperty ( 
	string sheetName,
	string name
	string value
)


Parameters

sheetName

Type: String

조건 컨트롤 시트의 name

name

Type: String

조건 컨트롤의 속성 이름

value

Type: String

조건 컨트롤 속성에 지정 할 값

...

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

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


	mxmodule.xapi.SetControlPropertySetControlSheetProperty "sheet1", "Size", 50
	
End Sub