Name | Description | |
---|---|---|
AppInfo | ||
AssemblyDirectory | Gets the assembly directory. | |
BaseURL | Gets or sets the base URL. | |
ConditionHeight | Gets or sets the height of the condition. | |
ConditionPoupURL | 조건 popup URL | |
ControlMargin | control 자동생성 margine left=10,top=10,marginleft=10,margintop=10,marginlable=0 | |
ControlSize | controlsize 정의 width=100,height=23 | |
Cookie | Property cookie | |
CookieString | Gets or sets the cookie string. | |
DataSourceURL | Gets or sets the data source URL. | |
DefaultFont | ||
DesignerMainURL | Gets or sets the designer main URL. | |
DisableASDK | ASDK 미사용 (iMATRIXModule 여부) | |
DisableControlImage | 조건영역 이미지 포함 저장여부 default false | |
DisableFeature | 비활성 기능 정의 | |
DisplayAlert | Gets or sets a value indicating whether [display alert]. | |
DisplayFormulaBar | 수식창 숨김/보임 여부 | |
DisplayHeadings | 행열 머릿글 숨김 보임 여부 | |
DisplayStatusBar | excel 상태바 표시 | |
DisplayWorkbookTabs | sheet tab 숨김/보임 여부 | |
DownloadURL | Gets or sets the download URL. | |
EnableAgent | agent 사용여부 설정 | |
EnableFeature | 활성화 항목 정의 | |
EnableWorkbook | Workbook 동시 사용 여부 [enable workbook]. | |
EncryptedUserCode | Gets or sets the encrypted user code. | |
ExportURL | Gets or sets the export URL. | |
FileExt | 문서 저장 file 확장자 | |
FixParam | Gets or sets the fix parameter. | |
FolderNameSpace | shell 에 사용할 folder namespace | |
HwndHost | host window handle | |
iBIGServiceURL | Gets or sets the i big service URL. | |
InListLimitCount | multicheck control 의 In 절 개수 제한 건수 | |
IsAgentLoaded | agent loading 여부 | |
IsDesignerMode | 디자이너 모드 여부 확인 | |
IsPrintPreview | 인쇄 미리보기 상태 여부 확인 | |
IsRunning | 실행중 여부 확인 | |
IsShowExcelMenu | Gets or sets a value indicating whether this instance is show excel menu. | |
IsStyleModuleLoad | ||
LanguageCode | 언어 코드 | |
LanguageID | 언어 ID | |
LanguageServiceURL | 다국어 번역 서비스 url | |
LimitBytes | Data size 제한 bytes. | |
METAServiceURL | Gets or sets the meta service URL. | |
ModuleName | 공통 모듈 명 | |
PrintDetail | 인쇄용 detail | |
PrintTitle | 인쇄용 title | |
PrintTitleHeight | Gets or sets the height of the print title. | |
ReadOnly | viewer 에서 보고서 열기 mode | |
RefreshBeforeURL | refresh 전 호출 url 조회 사유 입력 에 사용 | |
ReportCacheOption | 전역 reportcache option | |
RepositoryDBType | Gets or sets the type of the repository database. | |
SaveFileExt | designer 의 file 저장 확장자 (default : mtz, mtb | |
ServerURL | Gets or sets the server URL. | |
ShellURL | Gets or sets the shell URL. | |
StreamOption | network Stream option | |
TemplateURL | 보고서 template URL | |
UploadURL | Upload URL. | |
UseOutOfProcessExecute | 쿼리 실행 process 분리 (데이터 출력 용량 증가) | |
UserCode | 사용자 코드 | |
UserName | 사용자명 | |
UseSecurityReqeust | i-META Webservice 암호화 여부 | |
WorkPath | 임시 작업 경로 | |
ProcessIsolation | Excel Process 재사용 여부 |
2 댓글
MATRIX팀
Sub GetBaseUrl()
Dim mxmodule As Object
Dim baseurl
Set mxmodule = Application.COMAddIns.Item("iMATRIX.ExcelModule").Object
baseurl= mxmodule.xapi.Property.BaseURL
Debug.Print baseurl
End Sub
MATRIX팀
'VBA 통한 Export 시 이벤트 중지
Sub Export_File()
Dim mxmodule As Object
Set mxmodule = Application.COMAddIns.Item("iMATRIX.ExcelModule").Object
mxmodule.xapi.Property.BeforeSaveEnableEvent = False '저장전 이벤트
mxmodule.xapi.Property.IsRunning = True '실행중
mxmodule.xapi.Property.IsPrintPreview = True '미리보기
mxmodule.xapi.Property.DisplayAlert = False '알림 중지
Dim newWorkbook As Workbook
Dim ws As Worksheet
Dim savePath As String
wbname = ThisWorkbook.Path & "\file001.xlsx"
' 시트 가져오기
Set ws = ActiveSheet
ws.Copy
Set newWorkbook = ActiveWorkbook
newWorkbook.SaveCopyAs wbname ''.saveas, 51
newWorkbook.Close False 'SaveChanges:=False
mxmodule.xapi.Property.BeforeSaveEnableEvent = True
mxmodule.xapi.Property.IsRunning = False
mxmodule.xapi.Property.IsPrintPreview = False
mxmodule.xapi.Property.DisplayAlert = True
End Sub