...
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
...
코드 블럭 | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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 |