페이지 트리

버전 비교

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

...

dsCode

Type: String

Dataset Key값

dsName

Type: String

Dataset 표시명

outputType

Type: enOutputType

public enum enOutputType
{
        outNone = 0,
        outList = 1,
        outPivot = 2,
 }

출력 타입 (표 or Pivot)

target

Type: Excel.Range

출력 위치


Return Value

...

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

    Dim addin As COMAddIn
    Dim mxmodule As Object
    Dim ds As Object

    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object
    Set ds = mxmodule.xapi.AddDataset(ThisWorkbook, "DS1DSTest", "DS1DSTest", 1, Range("D1V1!A1"))

End Sub