Extended .NET SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
CFxSystemServices.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace PCAD_DOT_NET {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16using Teigha.TD;
17
18public class CFxSystemServices : global::System.IDisposable {
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 protected bool swigCMemOwn;
22 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
23 public CFxSystemServices(IntPtr cPtr, bool cMemoryOwn) {
24 swigCMemOwn = cMemoryOwn;
25 swigCPtr = new HandleRef(this, cPtr);
26 }
27 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
28 public static HandleRef getCPtr(CFxSystemServices obj) {
29 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
30 }
31
33 Dispose(false);
34 }
35
36 public void Dispose() {
37 Dispose(true);
38 global::System.GC.SuppressFinalize(this);
39 }
40
41 protected virtual void Dispose(bool disposing) {
42 lock(this) {
43 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
44 if (swigCMemOwn) {
45 swigCMemOwn = false;
47 }
48 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
49 }
50 }
51 }
52
53 public virtual bool GetPassword(CFxString dwgName, bool isXref, ref string password) {
54IntPtr tmp_password = Marshal.StringToCoTaskMemUni(password);
55 IntPtr saved_password = tmp_password;
56 try {
57 bool ret = PCADGlobalsPINVOKE.CFxSystemServices_GetPassword(swigCPtr, CFxString.getCPtr(dwgName), isXref, ref tmp_password);
59 return ret;
60 } finally {
61if (tmp_password != saved_password) password = Marshal.PtrToStringUni(tmp_password);
62 }
63 }
64
69
70 public virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage, OdRxObject pDb, OdDbBaseHostAppServices.FindFileHint hint) {
71 CFxString ret = new CFxString(PCADGlobalsPINVOKE.CFxSystemServices_FindFile__SWIG_0(swigCPtr, CFxString.getCPtr(sFile), bDisplayMessage, OdRxObject.getCPtr(pDb), (int)hint), true);
73 return ret;
74 }
75
76 public virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage, OdRxObject pDb) {
77 CFxString ret = new CFxString(PCADGlobalsPINVOKE.CFxSystemServices_FindFile__SWIG_1(swigCPtr, CFxString.getCPtr(sFile), bDisplayMessage, OdRxObject.getCPtr(pDb)), true);
79 return ret;
80 }
81
82 public virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage) {
83 CFxString ret = new CFxString(PCADGlobalsPINVOKE.CFxSystemServices_FindFile__SWIG_2(swigCPtr, CFxString.getCPtr(sFile), bDisplayMessage), true);
85 return ret;
86 }
87
93
99
104
109
110 public virtual void WriteLine(CFxString str, CFxDocument pContext, bool bShowCommandWindowOutput) {
111 PCADGlobalsPINVOKE.CFxSystemServices_WriteLine__SWIG_0(swigCPtr, CFxString.getCPtr(str), CFxDocument.getCPtr(pContext), bShowCommandWindowOutput);
113 }
114
119
124
125 public virtual CFxMainFrame GetMainFrame() {
126 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetMainFrame(swigCPtr);
127 CFxMainFrame ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxMainFrame(cPtr, false);
129 return ret;
130 }
131
132 public virtual int MessageBox(CFxString csText, CFxString csCaption, uint uType) {
133 int ret = PCADGlobalsPINVOKE.CFxSystemServices_MessageBox(swigCPtr, CFxString.getCPtr(csText), CFxString.getCPtr(csCaption), uType);
135 return ret;
136 }
137
139 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxDocumentManager(swigCPtr);
140 CFxDocumentManager ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxDocumentManager(cPtr, false);
142 return ret;
143 }
144
146 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetHostAppServices(swigCPtr);
147 CFxHostAppServices ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxHostAppServices(cPtr, false);
149 return ret;
150 }
151
153 OdRxSystemServices ret = (OdRxSystemServices)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxSystemServices),PCADGlobalsPINVOKE.CFxSystemServices_GetSystemServices(swigCPtr),false); /*createInt 3_2*/
154
156 return ret;
157}
158
160 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxEvalModeHandler(swigCPtr);
161 CFxEvalModeHandler ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxEvalModeHandler(cPtr, false);
163 return ret;
164 }
165
166 public class CFxExpressionParserData : global::System.IDisposable {
167 private Object locker = new Object();
168 private HandleRef swigCPtr;
169 protected bool swigCMemOwn;
170 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
171 public CFxExpressionParserData(IntPtr cPtr, bool cMemoryOwn) {
172 swigCMemOwn = cMemoryOwn;
173 swigCPtr = new HandleRef(this, cPtr);
174 }
175 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
176 public static HandleRef getCPtr(CFxExpressionParserData obj) {
177 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
178 }
179
181 Dispose(false);
182 }
183
184 public void Dispose() {
185 Dispose(true);
186 global::System.GC.SuppressFinalize(this);
187 }
188
189 protected virtual void Dispose(bool disposing) {
190 lock(this) {
191 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
192 if (swigCMemOwn) {
193 swigCMemOwn = false;
195 }
196 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
197 }
198 }
199 }
200
201 public CFxExpressionParserData() : this(PCADGlobalsPINVOKE.new_CFxSystemServices_CFxExpressionParserData(), true) {
203 }
204
216
228
240
252
264
276
288
300
312
324
336
348
360
372
384
385 }
386
387 public virtual OdResBuf SendStringToExecute(CFxString strCommand, CFxSystemServices.CFxExpressionParserData pData) {// OdResBufPtr
388 MemoryManager mMan = MemoryManager.GetMemoryManager();
389 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
391
392 OdResBuf ret = null;
393 if (null != mTrans)
394 {
395 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
396 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
397 }
398 else
399 {
400 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
401 }
402
404 return ret;
405}
406
407 public virtual OdResBuf SendStringToExecute(CFxString strCommand) {// OdResBufPtr
408 MemoryManager mMan = MemoryManager.GetMemoryManager();
409 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
411
412 OdResBuf ret = null;
413 if (null != mTrans)
414 {
415 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
416 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
417 }
418 else
419 {
420 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
421 }
422
424 return ret;
425}
426
427 public virtual OdResBuf SendStringToExecute(CFxSystemServices.CFxExpressionParserData pData, int rtype) {// OdResBufPtr
428 MemoryManager mMan = MemoryManager.GetMemoryManager();
429 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
431
432 OdResBuf ret = null;
433 if (null != mTrans)
434 {
435 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
436 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
437 }
438 else
439 {
440 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
441 }
442
444 return ret;
445}
446
447 public virtual OdResBuf SendStringToExecute(CFxSystemServices.CFxExpressionParserData pData, int rtype, SWIGTYPE_p_va_list vaList) {// OdResBufPtr
448 MemoryManager mMan = MemoryManager.GetMemoryManager();
449 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
451
452 OdResBuf ret = null;
453 if (null != mTrans)
454 {
455 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
456 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
457 }
458 else
459 {
460 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
461 }
462
464 return ret;
465}
466
468 MemoryManager mMan = MemoryManager.GetMemoryManager();
469 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
471
472 OdResBuf ret = null;
473 if (null != mTrans)
474 {
475 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
476 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
477 }
478 else
479 {
480 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
481 }
482
484 return ret;
485}
486
488 MemoryManager mMan = MemoryManager.GetMemoryManager();
489 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
491
492 OdResBuf ret = null;
493 if (null != mTrans)
494 {
495 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
496 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
497 }
498 else
499 {
500 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
501 }
502
504 return ret;
505}
506
511
516
522
523 public virtual OdGiRasterImage CreateRasterImage() {// OdGiRasterImagePtr
524 MemoryManager mMan = MemoryManager.GetMemoryManager();
525 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
527
528 OdGiRasterImage ret = null;
529 if (null != mTrans)
530 {
531 mTrans.AddObject((OdGiRasterImage)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdGiRasterImage),ptr, true));
532 ret = (OdGiRasterImage)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdGiRasterImage),ptr, false);
533 }
534 else
535 {
536 ret = (OdGiRasterImage)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdGiRasterImage),ptr, true);
537 }
538
540 return ret;
541}
542
548
550 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxProfileManager(swigCPtr);
551 CFxProfileManager ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxProfileManager(cPtr, false);
553 return ret;
554 }
555
556 public virtual SWIGTYPE_p_CFxIO GetFxIO() {
557 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxIO(swigCPtr);
558 SWIGTYPE_p_CFxIO ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxIO(cPtr, false);
560 return ret;
561 }
562
564 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxApplications(swigCPtr);
565 CFxApplications ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxApplications(cPtr, false);
567 return ret;
568 }
569
570 public virtual CFxVSTA GetVSTA() {
571 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetVSTA(swigCPtr);
572 CFxVSTA ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxVSTA(cPtr, false);
574 return ret;
575 }
576
581
583 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetIApplication(swigCPtr);
584 SWIGTYPE_p_IDispatch ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_IDispatch(cPtr, false);
586 return ret;
587 }
588
589 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags, SWIGTYPE_p_p_OdCodePageId codepage) {
590 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_0(swigCPtr, (int)pResultMode, CFxString.getCPtr(pResultStr), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName), (int)flags, SWIGTYPE_p_p_OdCodePageId.getCPtr(codepage));
592 return ret;
593 }
594
595 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags) {
596 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_1(swigCPtr, (int)pResultMode, CFxString.getCPtr(pResultStr), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName), (int)flags);
598 return ret;
599 }
600
601 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName) {
602 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_2(swigCPtr, (int)pResultMode, CFxString.getCPtr(pResultStr), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName));
604 return ret;
605 }
606
607 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex) {
608 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_3(swigCPtr, (int)pResultMode, CFxString.getCPtr(pResultStr), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex);
610 return ret;
611 }
612
613 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir) {
614 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_4(swigCPtr, (int)pResultMode, CFxString.getCPtr(pResultStr), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir));
616 return ret;
617 }
618
619 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags, SWIGTYPE_p_p_OdCodePageId codepage) {
620 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_5(swigCPtr, (int)pResultMode, CFxStringArray.getCPtr(pResultStrs), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName), (int)flags, SWIGTYPE_p_p_OdCodePageId.getCPtr(codepage));
622 return ret;
623 }
624
625 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags) {
626 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_6(swigCPtr, (int)pResultMode, CFxStringArray.getCPtr(pResultStrs), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName), (int)flags);
628 return ret;
629 }
630
631 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName) {
632 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_7(swigCPtr, (int)pResultMode, CFxStringArray.getCPtr(pResultStrs), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex, CFxString.getCPtr(templateName));
634 return ret;
635 }
636
637 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex) {
638 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_8(swigCPtr, (int)pResultMode, CFxStringArray.getCPtr(pResultStrs), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir), out filterIndex);
640 return ret;
641 }
642
643 public virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir) {
644 int ret = PCADGlobalsPINVOKE.CFxSystemServices_FileDialog__SWIG_9(swigCPtr, (int)pResultMode, CFxStringArray.getCPtr(pResultStrs), parent /*SIMPLETYPE*/, (int)eType, CFxString.getCPtr(dialogCaption), CFxString.getCPtr(defaultExtension), CFxString.getCPtr(filter), CFxString.getCPtr(initialDir));
646 return ret;
647 }
648
649 public virtual CFxUI GetFxUI() {
650 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxUI(swigCPtr);
651 CFxUI ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUI(cPtr, false);
653 return ret;
654 }
655
660
665
670
676
678 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxNetworkAccessManager(swigCPtr);
679 SWIGTYPE_p_CFxNetworkAccessManager ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxNetworkAccessManager(cPtr, false);
681 return ret;
682 }
683
684 public virtual CFxGeometryClipper CreateGeometryClipper() {// CFxGeometryClipperPtr
685 MemoryManager mMan = MemoryManager.GetMemoryManager();
686 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
688
689 CFxGeometryClipper ret = null;
690 if (null != mTrans)
691 {
692 mTrans.AddObject((CFxGeometryClipper)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxGeometryClipper),ptr, true));
693 ret = (CFxGeometryClipper)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxGeometryClipper),ptr, false);
694 }
695 else
696 {
697 ret = (CFxGeometryClipper)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxGeometryClipper),ptr, true);
698 }
699
701 return ret;
702}
703
708
713
718
720 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetObjectManager(swigCPtr);
721 SWIGTYPE_p_CFxObjectManager ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxObjectManager(cPtr, false);
723 return ret;
724 }
725
726 public virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version, fdt_resbufW resBuf, bool bIncludesDefaultValues) {// OdSmartPtr<CFxBagFiler>
727 MemoryManager mMan = MemoryManager.GetMemoryManager();
728 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
729 IntPtr ptr = PCADGlobalsPINVOKE.CFxSystemServices_CreateBagFiler__SWIG_0(swigCPtr, OdDbDatabase.getCPtr(db), (int)version, fdt_resbufW.getCPtr(resBuf), bIncludesDefaultValues);
730
731 CFxBagFiler ret = null;
732 if (null != mTrans)
733 {
734 mTrans.AddObject((CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true));
735 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, false);
736 }
737 else
738 {
739 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true);
740 }
741
743 return ret;
744}
745
746 public virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version, fdt_resbufW resBuf) {// OdSmartPtr<CFxBagFiler>
747 MemoryManager mMan = MemoryManager.GetMemoryManager();
748 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
750
751 CFxBagFiler ret = null;
752 if (null != mTrans)
753 {
754 mTrans.AddObject((CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true));
755 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, false);
756 }
757 else
758 {
759 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true);
760 }
761
763 return ret;
764}
765
766 public virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version) {// OdSmartPtr<CFxBagFiler>
767 MemoryManager mMan = MemoryManager.GetMemoryManager();
768 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
770
771 CFxBagFiler ret = null;
772 if (null != mTrans)
773 {
774 mTrans.AddObject((CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true));
775 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, false);
776 }
777 else
778 {
779 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true);
780 }
781
783 return ret;
784}
785
786 public virtual CFxBagFiler CreateBagFiler(OdDbDatabase db) {// OdSmartPtr<CFxBagFiler>
787 MemoryManager mMan = MemoryManager.GetMemoryManager();
788 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
790
791 CFxBagFiler ret = null;
792 if (null != mTrans)
793 {
794 mTrans.AddObject((CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true));
795 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, false);
796 }
797 else
798 {
799 ret = (CFxBagFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxBagFiler),ptr, true);
800 }
801
803 return ret;
804}
805
806 public virtual bool userBreak() {
809 return ret;
810 }
811
816
821
827
832
833 public virtual bool DoVerb(OdDbObjectId idOleObject) {
834 bool ret = PCADGlobalsPINVOKE.CFxSystemServices_DoVerb(swigCPtr, OdDbObjectId.getCPtr(idOleObject));
836 return ret;
837 }
838
839 public virtual bool AddOleDataToClipboard(SWIGTYPE_p_QMimeData pClipboardData, SWIGTYPE_p_OdSmartPtrT_CFxDatabase_t pData, int iFrameWidth, int iFrameHeight) {
840 bool ret = PCADGlobalsPINVOKE.CFxSystemServices_AddOleDataToClipboard(swigCPtr, SWIGTYPE_p_QMimeData.getCPtr(pClipboardData), SWIGTYPE_p_OdSmartPtrT_CFxDatabase_t.getCPtr(pData), iFrameWidth, iFrameHeight);
842 return ret;
843 }
844
845 public virtual CFxGeomUtils GetGeomUtils() {
846 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetGeomUtils(swigCPtr);
847 CFxGeomUtils ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxGeomUtils(cPtr, false);
849 return ret;
850 }
851
857
858 public virtual bool GetVersion(out int major, out int minor, out int product, out int build) {
859 bool ret = PCADGlobalsPINVOKE.CFxSystemServices_GetVersion__SWIG_0(swigCPtr, out major, out minor, out product, out build);
861 return ret;
862 }
863
869
874
880
886
892
893 public virtual void DisableUI(bool disable, bool includeCommandWindow, bool includeDocumentWindows, bool includeStatusBar) {
894 PCADGlobalsPINVOKE.CFxSystemServices_DisableUI__SWIG_0(swigCPtr, disable, includeCommandWindow, includeDocumentWindows, includeStatusBar);
896 }
897
898 public virtual void DisableUI(bool disable, bool includeCommandWindow, bool includeDocumentWindows) {
899 PCADGlobalsPINVOKE.CFxSystemServices_DisableUI__SWIG_1(swigCPtr, disable, includeCommandWindow, includeDocumentWindows);
901 }
902
903 public virtual void DisableUI(bool disable, bool includeCommandWindow) {
904 PCADGlobalsPINVOKE.CFxSystemServices_DisableUI__SWIG_2(swigCPtr, disable, includeCommandWindow);
906 }
907
912
917
923
929
930 public virtual CFxAPI GetFxAPI(CFxDocument pDocument) {
931 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSystemServices_GetFxAPI(swigCPtr, CFxDocument.getCPtr(pDocument));
932 CFxAPI ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxAPI(cPtr, false);
934 return ret;
935 }
936
941
947
952
957
962
963 public virtual OdResBuf ExecuteStringOnPause(CFxDocument pDoc, CFxString strCommand, CFxSystemServices.CFxExpressionParserData pData) {// OdResBufPtr
964 MemoryManager mMan = MemoryManager.GetMemoryManager();
965 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
967
968 OdResBuf ret = null;
969 if (null != mTrans)
970 {
971 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
972 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
973 }
974 else
975 {
976 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
977 }
978
980 return ret;
981}
982
983 public virtual OdResBuf ExecuteStringOnPause(CFxDocument pDoc, CFxString strCommand) {// OdResBufPtr
984 MemoryManager mMan = MemoryManager.GetMemoryManager();
985 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
987
988 OdResBuf ret = null;
989 if (null != mTrans)
990 {
991 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
992 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
993 }
994 else
995 {
996 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
997 }
998
1000 return ret;
1001}
1002
1003 public enum FontType {
1004 eFontsAll = 0,
1005 eFontsSHX = 1,
1006 eFontsTTF = 2
1007 }
1008
1009 public enum InitialDir {
1010 kDirOpen,
1011 kDirAttach,
1012 kDirInsert,
1015 kDirLisp,
1016 kDirSave,
1017 kDirPrint
1018 }
1019
1020 public enum ModelerType {
1021 kNoModeler = 0,
1022 kOdaModeler = 1,
1023 kSpatialACIS = 2,
1024 kUnknownModeler = 3
1025 }
1026
1027}
1028
1029}
static HandleRef getCPtr(CFxDocument obj)
static HandleRef getCPtr(CFxFileData obj)
static HandleRef getCPtr(CFxStringArray obj)
static HandleRef getCPtr(CFxString obj)
Definition CFxString.cs:28
static HandleRef getCPtr(CFxExpressionParserData obj)
virtual void RemoveOutputDevice(SWIGTYPE_p_CFxOutputDevice device)
virtual int MessageBox(CFxString csText, CFxString csCaption, uint uType)
virtual void DisableUI(bool disable, bool includeCommandWindow, bool includeDocumentWindows, bool includeStatusBar)
virtual CFxEvalModeHandler GetFxEvalModeHandler()
virtual OdRxSystemServices GetSystemServices()
virtual void GetInitialDirPath(CFxSystemServices.InitialDir type, CFxString initialDir)
virtual CFxApplications GetFxApplications()
virtual OdResBuf SendStringToExecute(CFxSystemServices.CFxExpressionParserData pData, OdResBuf pResbuf)
virtual CFxUIStyle.UIStyle GetRibbonTheme()
virtual SWIGTYPE_p_CFxNetworkAccessManager GetFxNetworkAccessManager()
virtual OdResBuf SendStringToExecute(CFxSystemServices.CFxExpressionParserData pData, int rtype, SWIGTYPE_p_va_list vaList)
virtual CFxProfileManager GetFxProfileManager()
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName)
virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags, SWIGTYPE_p_p_OdCodePageId codepage)
virtual bool AddOleDataToClipboard(SWIGTYPE_p_QMimeData pClipboardData, SWIGTYPE_p_OdSmartPtrT_CFxDatabase_t pData, int iFrameWidth, int iFrameHeight)
virtual SWIGTYPE_p_CFxIO GetFxIO()
virtual OdResBuf ExecuteStringOnPause(CFxDocument pDoc, CFxString strCommand, CFxSystemServices.CFxExpressionParserData pData)
virtual void Dispose(bool disposing)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags)
virtual CFxString GetOpenDefaultExtension()
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex)
virtual OdCodePageId GetSystemCodepage()
virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version, fdt_resbufW resBuf)
virtual void AuditPrintReport(OdDbAuditInfo pAuditInfo, CFxString str)
virtual OdResBuf SendStringToExecute(CFxDocument pDoc, CFxSystemServices.CFxExpressionParserData pData, OdResBuf pResbuf)
virtual OdResBuf SendStringToExecute(CFxString strCommand, CFxSystemServices.CFxExpressionParserData pData)
virtual SWIGTYPE_p_OdSmartPtrT_CFxRasterImage_t CreateDrawablePreview(UInt32 iWidth, UInt32 iHeight, OdDbDatabase pDatabase, SWIGTYPE_p_OdArrayT_OdGiDrawable_const_p_OdObjectsAllocatorT_OdGiDrawable_const_p_t_t drawables, CFxViewDrawInfo pInfo)
virtual CFxDocumentManager GetFxDocumentManager()
virtual CFxGeometryClipper CreateGeometryClipper()
virtual void SetOEMVersion(CFxString sOEMVersion)
virtual CFxGeomUtils GetGeomUtils()
virtual SWIGTYPE_p_IDispatch GetIApplication()
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags)
virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage, OdRxObject pDb)
virtual void DisableUI(bool disable, bool includeCommandWindow, bool includeDocumentWindows)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir)
virtual void Write(CFxString str)
virtual void Help(CFxString lpCommandName)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir)
virtual CFxBagFiler CreateBagFiler(OdDbDatabase db)
virtual void SetInitialDirPath(CFxSystemServices.InitialDir type, CFxString fileNamePath)
virtual CFxString FindFile(CFxString sFile, bool bDisplayMessage, OdRxObject pDb, OdDbBaseHostAppServices.FindFileHint hint)
virtual void Write(CFxString str, CFxDocument pContext)
virtual void SetSystemCodepage(OdCodePageId codepage)
virtual OdResBuf ExecuteStringOnPause(CFxDocument pDoc, CFxString strCommand)
virtual void QueueExpr(CFxSystemServices.CFxExpressionParserData pData, OdResBuf pExpr)
virtual bool GetPassword(CFxString dwgName, bool isXref, ref string password)
virtual CFxString FindFile(CFxString sFile)
virtual CFxSystemServices.ModelerType GetModelerManufacture()
virtual SWIGTYPE_p_OdArrayT_CFxString_t GetAvailableFonts(CFxSystemServices.FontType eType)
virtual CFxHostAppServices GetHostAppServices()
virtual void ActivateRibbon(bool enable)
static HandleRef getCPtr(CFxSystemServices obj)
virtual void QueueExpr(CFxSystemServices.CFxExpressionParserData pData, int rtype)
virtual void WriteLine(CFxString str, CFxDocument pContext, bool bShowCommandWindowOutput)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxString pResultStr, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex)
virtual void DisableUI(bool disable)
virtual CFxMainFrame GetMainFrame()
virtual void WriteLine(CFxString str)
virtual OdResBuf SendStringToExecute(CFxSystemServices.CFxExpressionParserData pData, int rtype)
virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version)
virtual bool DoVerb(OdDbObjectId idOleObject)
virtual bool GetVersion(out int major, out int minor, out int product, out int build)
virtual void GetInitialDirPath(CFxSystemServices.InitialDir type, CFxString initialDir, CFxFileData info)
virtual bool IsValidFileName(CFxString fileName)
virtual void AddOutputDevice(SWIGTYPE_p_CFxOutputDevice device)
virtual CFxAPI GetFxAPI(CFxDocument pDocument)
virtual void DisableUI(bool disable, bool includeCommandWindow)
CFxSystemServices(IntPtr cPtr, bool cMemoryOwn)
virtual void AuthoriseOEMModule(bool authorise)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName, CFxUserIO.FileNameFlags flags, SWIGTYPE_p_p_OdCodePageId codepage)
virtual void ExitApplication(int nReturnCode)
virtual OdResBuf SendStringToExecute(CFxString strCommand)
virtual int FileDialog(CFxUserIO.FileNameRetVal pResultMode, CFxStringArray pResultStrs, IntPtr parent, CFxUserIO.FileNameType eType, CFxString dialogCaption, CFxString defaultExtension, CFxString filter, CFxString initialDir, out int filterIndex, CFxString templateName)
virtual SWIGTYPE_p_CFxObjectManager GetObjectManager()
virtual SWIGTYPE_p_OdSmartPtrT_CFxVectorizeDevice_t GetFxGDIDevice()
virtual void SetRibbonTheme(CFxUIStyle.UIStyle value)
virtual CFxString GetAppDataVersion()
virtual OdGiRasterImage CreateRasterImage()
virtual void SetUserBreak(bool bUserBreak)
virtual CFxBagFiler CreateBagFiler(OdDbDatabase db, DwgVersion version, fdt_resbufW resBuf, bool bIncludesDefaultValues)
virtual void WriteLine(CFxString str, CFxDocument pContext)
static HandleRef getCPtr(CFxViewDrawInfo obj)
static global::System.IntPtr CFxSystemServices_GetFxIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_IsApplicationExiting(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_IsValidFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxSystemServices_WriteLine__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)
static int CFxSystemServices_FileDialog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxSystemServices_FileDialog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static void CFxSystemServices_Help(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_SetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_GetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSystemServices_CFxExpressionParserData(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_WriteLine__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_SetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSystemServices_GetMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateRasterImage(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_AuditPrintReport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxSystemServices_GetInitialDirPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_ExitApplication__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_GetAvailableFonts(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetIApplication(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_GetPassword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, ref IntPtr jarg4)
static int CFxSystemServices_FileDialog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSystemServices_GetVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3, out int jarg4, out int jarg5)
static void CFxSystemServices_SetUserBreak__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetOpenDefaultExtension(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetAppDataVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_QueueExpr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxSystemServices_SetUserBreak__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4, int jarg5)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxSystemServices_GetSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_GetModelerManufacture(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3)
static bool CFxSystemServices_DoVerb(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_FileDialog__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static int CFxSystemServices_FileDialog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static int CFxSystemServices_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static global::System.IntPtr CFxSystemServices_CreateDrawablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, UInt32 jarg3, HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool CFxSystemServices_CFxExpressionParserData_m_bUCS_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_QueueExpr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxSystemServices_FileDialog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static void CFxSystemServices_CFxExpressionParserData_m_bUCS_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static global::System.IntPtr CFxSystemServices_GetObjectManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxSystemServices_GetFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemServices_GetFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxSystemServices_WriteLine__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_ActivateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_AddOleDataToClipboard(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static global::System.IntPtr CFxSystemServices_GetVSTA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateGeometryClipper(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_ExitApplication__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_GetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_AuthoriseOEMModule(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_SetInitialDirPath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static int CFxSystemServices_FileDialog__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxSystemServices_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_StopATFBomb(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_RemoveOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_AddOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_DisableUI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static void CFxSystemServices_SetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_GetInitialDirPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxSystemServices_FileDialog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static global::System.IntPtr CFxSystemServices_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_GetGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxNetworkAccessManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_IsOEMModuleAuthorised(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4)
static global::System.IntPtr CFxSystemServices_GetFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_userBreak(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4)
static global::System.IntPtr CFxSystemServices_GetHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_GetFxGDIDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxSystemServices_FileDialog__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static HandleRef getCPtr(fdt_resbufW obj)
static HandleRef getCPtr(OdRxObject obj)
Definition OdRxObject.cs:26
static HandleRef getCPtr(OdDbAuditInfo obj)
static HandleRef getCPtr(OdDbDatabase obj)
static HandleRef getCPtr(OdDbObjectId obj)
static HandleRef getCPtr(OdResBuf obj)
Definition OdResBuf.cs:26