페이지 트리
메타 데이터의 끝으로 건너뛰기
메타 데이터의 시작으로 이동

이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

« 이전 버전 4 다음 »

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


Syntax
public DatasetModel AddDataset(
   Excel.Workbook wbobj, 
   string dsCode, 
   string dsName, 
   enOutputType outputType, 
   Excel.Range target
)


Parameters

wbobj

Type: Excel.Workbook

현재 Workbook object

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

Type:  Object (DatasetModel)

정상일 경우 : Object 

오류 일경우 : null


Example
Sub CreateDataset()
    Dim addin As COMAddIn
    Dim mxmodule As Object
    Dim ds As Object
    Set addin = Application.COMAddIns.Item("iMATRIX6.ExcelModule")
    Set mxmodule = addin.Object
    
    
    Set ds = mxmodule.viewmodel.activebook.CreateDataset("DS2", "DS2")
    ds.sourcesql = "select * from mtx_user"
    ds.ConnectionCode = "MTXRPTY"
    mxmodule.viewmodel.activebook.AddDataset ds
    mxmodule.xapi.AddDataset ThisWorkbook, "DS2", "DS2", 1, Range("D1!A1")
End Sub
  • 레이블 없음