페이지 트리

버전 비교

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

...

코드 블럭
languagevb
titleSyntax
public void Edit(bool bIsEdit, string code = "", string name = "", string description = "", string foldercode = "")


Parameters

bIsEdit

Type: bool

false : 디자이너 실행

true : 지원안함 (모듈 내부에서 이용)레포트와 같이 디자이너 실행 (code값이 ""일경우 현재 레포트를 디자이너 띄움)


code

Type: string

디자이너로 실행할 Report Code


name

Type: string

디자이너로 실행할 Report Name


description

Type: string

디자이너로 실행할 Report Description



foldercode


Type: string


디자이너로 실행할 Report Foldercode 



Returns

Type: void

코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
//디자이너만 띄울때
Sub CreateDesigner()
    Dim mxmodule As Object
    Dim ds As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object

    mxmodule.xapi.Edit (false)
End Sub

//현재 레포트를 디자이너로 띄울때
Sub CreateDesigner()
    Dim mxmodule As Object
    Dim ds As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object

    mxmodule.xapi.Edit (true)
End Sub

//특정 레포트를 디자이너로 띄울때
Sub CreateDesigner()
    Dim mxmodule As Object
    Dim ds As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object

    mxmodule.xapi.Edit (true, "REP1F58A41E6DC2493C9054A13DB890D25A", "CRUD_SAMPLE", "CRUD_SAMPLE", "FLD3FEC97D4620A41AB8374981DF0A26364")
End Sub