특정 동작설정 기능을 VBA 코드로 실행 합니다.
Syntax
Public Function ExecuteAction ( actionName As String, param1 As String, param2 As String, param3 As String, param4 As String, param5 As String, param6 As String, ) As Long
Parameters
actionName |
---|
Type: String
실행할 동작설정 명
Name | 동작명 |
---|---|
HyperLink | HyperLink 동작 (보고서 팝업, 시트 이동에 사용) |
param1~6 |
---|
Type: String
동작설정에 필요한 매개변수
Return Value
Type: object
동작설정의 결과 값
Example
Sub MultiCRUDTest() Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object mxmodule.xapi.MultiCRUD ThisWorkbook, "U1;U2" If mxmodule.xapi.LastErrorCode <> 0 Then mxmodule.xapi.MessageBox mxmodule.xapi.LastErrorMessage, vbInformation, "i-MATRIX" Else mxmodule.xapi.MessageBox "Complete." & vbCrLf & "Info" & mxmodule.xapi.ResponseData, vbInformation, "i-MATRIX" End If End Sub