Extended .NET SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
ExHostAppServices.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 Teigha.TD {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16
18 private Object locker = new Object();
19 private HandleRef swigCPtr;
20 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
21 public ExHostAppServices(IntPtr cPtr, bool cMemoryOwn) : base(TD_DbPINVOKE.ExHostAppServices_SWIGUpcast(cPtr), cMemoryOwn) {
22 swigCPtr = new HandleRef(this, cPtr);
23 }
24
25 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
26 public static HandleRef getCPtr(ExHostAppServices obj) {
27 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
28 }
29
30 protected override void Dispose(bool disposing) {
31 lock(this) {
32 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
33 if (swigCMemOwn) {
34 swigCMemOwn = false;
36 }
37 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
38 }
39 base.Dispose(disposing);
40 }
41 }
42
44 : this(TD_DbPINVOKE.new_ExHostAppServices(), MemoryManager.GetMemoryManager().GetCurrentTransaction() == null)
45 {
46 MemoryTransaction mTr = MemoryManager.GetMemoryManager().GetCurrentTransaction(); // MemoryTransaction #1
47 if (null != mTr)
48 {
49 mTr.AddObject(new ExHostAppServices(swigCPtr.Handle, true));
50 }
52 SwigDirectorConnect();
53 DelegateHolder.OnHoldSwigDirectorDelegates(this);
54 }
55
57 global::System.IntPtr cPtr = (SwigDerivedClassHasMethod("newProgressMeter", swigMethodTypes6) ? TD_DbPINVOKE.ExHostAppServices_newProgressMeterSwigExplicitExHostAppServices(swigCPtr) : TD_DbPINVOKE.ExHostAppServices_newProgressMeter(swigCPtr));
58 OdDbHostAppProgressMeter ret = (cPtr == global::System.IntPtr.Zero) ? null : new OdDbHostAppProgressMeter(cPtr, false);
60 return ret;
61 }
62
63 public override void releaseProgressMeter(OdDbHostAppProgressMeter pProgressMeter) {
64 if (SwigDerivedClassHasMethod("releaseProgressMeter", swigMethodTypes7)) TD_DbPINVOKE.ExHostAppServices_releaseProgressMeterSwigExplicitExHostAppServices(swigCPtr, OdDbHostAppProgressMeter.getCPtr(pProgressMeter)); else TD_DbPINVOKE.ExHostAppServices_releaseProgressMeter(swigCPtr, OdDbHostAppProgressMeter.getCPtr(pProgressMeter));
66 }
67
68 public virtual void start(String displayString) {
69 if (SwigDerivedClassHasMethod("start", swigMethodTypes74)) TD_DbPINVOKE.ExHostAppServices_startSwigExplicitExHostAppServices__SWIG_0(swigCPtr, displayString); else TD_DbPINVOKE.ExHostAppServices_start__SWIG_0(swigCPtr, displayString);
71 }
72
73 public virtual void start() {
74 if (SwigDerivedClassHasMethod("start", swigMethodTypes75)) TD_DbPINVOKE.ExHostAppServices_startSwigExplicitExHostAppServices__SWIG_1(swigCPtr); else TD_DbPINVOKE.ExHostAppServices_start__SWIG_1(swigCPtr);
76 }
77
78 public virtual void stop() {
79 if (SwigDerivedClassHasMethod("stop", swigMethodTypes76)) TD_DbPINVOKE.ExHostAppServices_stopSwigExplicitExHostAppServices(swigCPtr); else TD_DbPINVOKE.ExHostAppServices_stop(swigCPtr);
81 }
82
83 public virtual void meterProgress() {
84 if (SwigDerivedClassHasMethod("meterProgress", swigMethodTypes77)) TD_DbPINVOKE.ExHostAppServices_meterProgressSwigExplicitExHostAppServices(swigCPtr); else TD_DbPINVOKE.ExHostAppServices_meterProgress(swigCPtr);
86 }
87
88 public virtual void setLimit(int max) {
89 if (SwigDerivedClassHasMethod("setLimit", swigMethodTypes78)) TD_DbPINVOKE.ExHostAppServices_setLimitSwigExplicitExHostAppServices(swigCPtr, max); else TD_DbPINVOKE.ExHostAppServices_setLimit(swigCPtr, max);
91 }
92
97
102
104 OdHatchPatternManager ret = (OdHatchPatternManager)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdHatchPatternManager),(SwigDerivedClassHasMethod("patternManager", swigMethodTypes65) ? TD_DbPINVOKE.ExHostAppServices_patternManagerSwigExplicitExHostAppServices(swigCPtr) : TD_DbPINVOKE.ExHostAppServices_patternManager(swigCPtr)),false); /*createInt 3_2*/
105
107 return ret;
108}
109
110 public override OdDbDatabase readFile(String filename, bool allowCPConversion, bool partialLoad, FileShareMode shareMode, String password) {// OdDbDatabasePtr
111 MemoryManager mMan = MemoryManager.GetMemoryManager();
112 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
113 IntPtr ptr = (SwigDerivedClassHasMethod("readFile", swigMethodTypes54) ? TD_DbPINVOKE.ExHostAppServices_readFileSwigExplicitExHostAppServices(swigCPtr, filename, allowCPConversion, partialLoad, (int)shareMode, password) : TD_DbPINVOKE.ExHostAppServices_readFile(swigCPtr, filename, allowCPConversion, partialLoad, (int)shareMode, password));
114
115 OdDbDatabase ret = null;
116 if (null != mTrans)
117 {
118 mTrans.AddObject((OdDbDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDatabase),ptr, true));
119 ret = (OdDbDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDatabase),ptr, false);
120 }
121 else
122 {
123 ret = (OdDbDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDatabase),ptr, true);
124 }
125
127 return ret;
128}
129
130 protected static string getRealClassName(IntPtr ptr) {
131 string ret = TD_DbPINVOKE.ExHostAppServices_getRealClassName(ptr /*SIMPLETYPE*/);
133 return ret;
134 }
135
136 private void SwigDirectorConnect() {
137 if (SwigDerivedClassHasMethod("queryX", swigMethodTypes0))
138 swigDelegate0 = new SwigDelegateExHostAppServices_0(SwigDirectorMethodqueryX);
139 if (SwigDerivedClassHasMethod("isA", swigMethodTypes1))
140 swigDelegate1 = new SwigDelegateExHostAppServices_1(SwigDirectorMethodisA);
141 if (SwigDerivedClassHasMethod("copyFrom", swigMethodTypes2))
142 swigDelegate2 = new SwigDelegateExHostAppServices_2(SwigDirectorMethodcopyFrom);
143 if (SwigDerivedClassHasMethod("findFile", swigMethodTypes3))
144 swigDelegate3 = new SwigDelegateExHostAppServices_3(SwigDirectorMethodfindFile__SWIG_0);
145 if (SwigDerivedClassHasMethod("findFile", swigMethodTypes4))
146 swigDelegate4 = new SwigDelegateExHostAppServices_4(SwigDirectorMethodfindFile__SWIG_1);
147 if (SwigDerivedClassHasMethod("findFile", swigMethodTypes5))
148 swigDelegate5 = new SwigDelegateExHostAppServices_5(SwigDirectorMethodfindFile__SWIG_2);
149 if (SwigDerivedClassHasMethod("newProgressMeter", swigMethodTypes6))
150 swigDelegate6 = new SwigDelegateExHostAppServices_6(SwigDirectorMethodnewProgressMeter);
151 if (SwigDerivedClassHasMethod("releaseProgressMeter", swigMethodTypes7))
152 swigDelegate7 = new SwigDelegateExHostAppServices_7(SwigDirectorMethodreleaseProgressMeter);
153 if (SwigDerivedClassHasMethod("program", swigMethodTypes8))
154 swigDelegate8 = new SwigDelegateExHostAppServices_8(SwigDirectorMethodprogram);
155 if (SwigDerivedClassHasMethod("product", swigMethodTypes9))
156 swigDelegate9 = new SwigDelegateExHostAppServices_9(SwigDirectorMethodproduct);
157 if (SwigDerivedClassHasMethod("companyName", swigMethodTypes10))
158 swigDelegate10 = new SwigDelegateExHostAppServices_10(SwigDirectorMethodcompanyName);
159 if (SwigDerivedClassHasMethod("prodcode", swigMethodTypes11))
160 swigDelegate11 = new SwigDelegateExHostAppServices_11(SwigDirectorMethodprodcode);
161 if (SwigDerivedClassHasMethod("releaseMajorMinorString", swigMethodTypes12))
162 swigDelegate12 = new SwigDelegateExHostAppServices_12(SwigDirectorMethodreleaseMajorMinorString);
163 if (SwigDerivedClassHasMethod("releaseMajorVersion", swigMethodTypes13))
164 swigDelegate13 = new SwigDelegateExHostAppServices_13(SwigDirectorMethodreleaseMajorVersion);
165 if (SwigDerivedClassHasMethod("releaseMinorVersion", swigMethodTypes14))
166 swigDelegate14 = new SwigDelegateExHostAppServices_14(SwigDirectorMethodreleaseMinorVersion);
167 if (SwigDerivedClassHasMethod("versionString", swigMethodTypes15))
168 swigDelegate15 = new SwigDelegateExHostAppServices_15(SwigDirectorMethodversionString);
169 if (SwigDerivedClassHasMethod("warning", swigMethodTypes16))
170 swigDelegate16 = new SwigDelegateExHostAppServices_16(SwigDirectorMethodwarning__SWIG_0);
171 if (SwigDerivedClassHasMethod("warning", swigMethodTypes17))
172 swigDelegate17 = new SwigDelegateExHostAppServices_17(SwigDirectorMethodwarning__SWIG_1);
173 if (SwigDerivedClassHasMethod("warning", swigMethodTypes18))
174 swigDelegate18 = new SwigDelegateExHostAppServices_18(SwigDirectorMethodwarning__SWIG_2);
175 if (SwigDerivedClassHasMethod("warning", swigMethodTypes19))
176 swigDelegate19 = new SwigDelegateExHostAppServices_19(SwigDirectorMethodwarning__SWIG_3);
177 if (SwigDerivedClassHasMethod("getErrorDescription", swigMethodTypes20))
178 swigDelegate20 = new SwigDelegateExHostAppServices_20(SwigDirectorMethodgetErrorDescription);
179 if (SwigDerivedClassHasMethod("newUndoController", swigMethodTypes21))
180 swigDelegate21 = new SwigDelegateExHostAppServices_21(SwigDirectorMethodnewUndoController);
181 if (SwigDerivedClassHasMethod("newUndoStream", swigMethodTypes22))
182 swigDelegate22 = new SwigDelegateExHostAppServices_22(SwigDirectorMethodnewUndoStream);
183 if (SwigDerivedClassHasMethod("auditPrintReport", swigMethodTypes23))
184 swigDelegate23 = new SwigDelegateExHostAppServices_23(SwigDirectorMethodauditPrintReport);
185 if (SwigDerivedClassHasMethod("ttfFileNameByDescriptor", swigMethodTypes24))
186 swigDelegate24 = new SwigDelegateExHostAppServices_24(SwigDirectorMethodttfFileNameByDescriptor);
187 if (SwigDerivedClassHasMethod("getAlternateFontName", swigMethodTypes25))
188 swigDelegate25 = new SwigDelegateExHostAppServices_25(SwigDirectorMethodgetAlternateFontName);
189 if (SwigDerivedClassHasMethod("getFontMapFileName", swigMethodTypes26))
190 swigDelegate26 = new SwigDelegateExHostAppServices_26(SwigDirectorMethodgetFontMapFileName);
191 if (SwigDerivedClassHasMethod("getPreferableFont", swigMethodTypes27))
192 swigDelegate27 = new SwigDelegateExHostAppServices_27(SwigDirectorMethodgetPreferableFont);
193 if (SwigDerivedClassHasMethod("getSubstituteFont", swigMethodTypes28))
194 swigDelegate28 = new SwigDelegateExHostAppServices_28(SwigDirectorMethodgetSubstituteFont);
195 if (SwigDerivedClassHasMethod("getSubstituteFontByChar", swigMethodTypes29))
196 swigDelegate29 = new SwigDelegateExHostAppServices_29(SwigDirectorMethodgetSubstituteFontByChar);
197 if (SwigDerivedClassHasMethod("getSystemFontFolders", swigMethodTypes30))
198 swigDelegate30 = new SwigDelegateExHostAppServices_30(SwigDirectorMethodgetSystemFontFolders);
199 if (SwigDerivedClassHasMethod("collectFilePathsInDirectory", swigMethodTypes31))
200 swigDelegate31 = new SwigDelegateExHostAppServices_31(SwigDirectorMethodcollectFilePathsInDirectory__SWIG_0);
201 if (SwigDerivedClassHasMethod("collectFilePathsInDirectory", swigMethodTypes32))
202 swigDelegate32 = new SwigDelegateExHostAppServices_32(SwigDirectorMethodcollectFilePathsInDirectory__SWIG_1);
203 if (SwigDerivedClassHasMethod("fileDialog", swigMethodTypes33))
204 swigDelegate33 = new SwigDelegateExHostAppServices_33(SwigDirectorMethodfileDialog__SWIG_0);
205 if (SwigDerivedClassHasMethod("fileDialog", swigMethodTypes34))
206 swigDelegate34 = new SwigDelegateExHostAppServices_34(SwigDirectorMethodfileDialog__SWIG_1);
207 if (SwigDerivedClassHasMethod("fileDialog", swigMethodTypes35))
208 swigDelegate35 = new SwigDelegateExHostAppServices_35(SwigDirectorMethodfileDialog__SWIG_2);
209 if (SwigDerivedClassHasMethod("fileDialog", swigMethodTypes36))
210 swigDelegate36 = new SwigDelegateExHostAppServices_36(SwigDirectorMethodfileDialog__SWIG_3);
211 if (SwigDerivedClassHasMethod("fileDialog", swigMethodTypes37))
212 swigDelegate37 = new SwigDelegateExHostAppServices_37(SwigDirectorMethodfileDialog__SWIG_4);
213 if (SwigDerivedClassHasMethod("gsBitmapDevice", swigMethodTypes38))
214 swigDelegate38 = new SwigDelegateExHostAppServices_38(SwigDirectorMethodgsBitmapDevice__SWIG_0);
215 if (SwigDerivedClassHasMethod("gsBitmapDevice", swigMethodTypes39))
216 swigDelegate39 = new SwigDelegateExHostAppServices_39(SwigDirectorMethodgsBitmapDevice__SWIG_1);
217 if (SwigDerivedClassHasMethod("gsBitmapDevice", swigMethodTypes40))
218 swigDelegate40 = new SwigDelegateExHostAppServices_40(SwigDirectorMethodgsBitmapDevice__SWIG_2);
219 if (SwigDerivedClassHasMethod("gsBitmapDevice", swigMethodTypes41))
220 swigDelegate41 = new SwigDelegateExHostAppServices_41(SwigDirectorMethodgsBitmapDevice__SWIG_3);
221 if (SwigDerivedClassHasMethod("getTempPath", swigMethodTypes42))
222 swigDelegate42 = new SwigDelegateExHostAppServices_42(SwigDirectorMethodgetTempPath);
223 if (SwigDerivedClassHasMethod("numThreads", swigMethodTypes43))
224 swigDelegate43 = new SwigDelegateExHostAppServices_43(SwigDirectorMethodnumThreads);
225 if (SwigDerivedClassHasMethod("getEnv", swigMethodTypes44))
226 swigDelegate44 = new SwigDelegateExHostAppServices_44(SwigDirectorMethodgetEnv);
227 if (SwigDerivedClassHasMethod("setEnv", swigMethodTypes45))
228 swigDelegate45 = new SwigDelegateExHostAppServices_45(SwigDirectorMethodsetEnv);
229 if (SwigDerivedClassHasMethod("databaseClass", swigMethodTypes46))
230 swigDelegate46 = new SwigDelegateExHostAppServices_46(SwigDirectorMethoddatabaseClass);
231 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes47))
232 swigDelegate47 = new SwigDelegateExHostAppServices_47(SwigDirectorMethodreadFile__SWIG_0);
233 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes48))
234 swigDelegate48 = new SwigDelegateExHostAppServices_48(SwigDirectorMethodreadFile__SWIG_1);
235 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes49))
236 swigDelegate49 = new SwigDelegateExHostAppServices_49(SwigDirectorMethodreadFile__SWIG_2);
237 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes50))
238 swigDelegate50 = new SwigDelegateExHostAppServices_50(SwigDirectorMethodreadFile__SWIG_3);
239 if (SwigDerivedClassHasMethod("recoverFile", swigMethodTypes51))
240 swigDelegate51 = new SwigDelegateExHostAppServices_51(SwigDirectorMethodrecoverFile__SWIG_0);
241 if (SwigDerivedClassHasMethod("recoverFile", swigMethodTypes52))
242 swigDelegate52 = new SwigDelegateExHostAppServices_52(SwigDirectorMethodrecoverFile__SWIG_1);
243 if (SwigDerivedClassHasMethod("recoverFile", swigMethodTypes53))
244 swigDelegate53 = new SwigDelegateExHostAppServices_53(SwigDirectorMethodrecoverFile__SWIG_2);
245 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes54))
246 swigDelegate54 = new SwigDelegateExHostAppServices_54(SwigDirectorMethodreadFile);
247 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes55))
248 swigDelegate55 = new SwigDelegateExHostAppServices_55(SwigDirectorMethodreadFile__SWIG_5);
249 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes56))
250 swigDelegate56 = new SwigDelegateExHostAppServices_56(SwigDirectorMethodreadFile__SWIG_6);
251 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes57))
252 swigDelegate57 = new SwigDelegateExHostAppServices_57(SwigDirectorMethodreadFile__SWIG_7);
253 if (SwigDerivedClassHasMethod("readFile", swigMethodTypes58))
254 swigDelegate58 = new SwigDelegateExHostAppServices_58(SwigDirectorMethodreadFile__SWIG_8);
255 if (SwigDerivedClassHasMethod("warning1", swigMethodTypes59))
256 swigDelegate59 = new SwigDelegateExHostAppServices_59(SwigDirectorMethodwarning1);
257 if (SwigDerivedClassHasMethod("warning", swigMethodTypes60))
258 swigDelegate60 = new SwigDelegateExHostAppServices_60(SwigDirectorMethodwarning);
259 if (SwigDerivedClassHasMethod("warning2", swigMethodTypes61))
260 swigDelegate61 = new SwigDelegateExHostAppServices_61(SwigDirectorMethodwarning2);
261 if (SwigDerivedClassHasMethod("warning3", swigMethodTypes62))
262 swigDelegate62 = new SwigDelegateExHostAppServices_62(SwigDirectorMethodwarning3);
263 if (SwigDerivedClassHasMethod("doFullCRCCheck", swigMethodTypes63))
264 swigDelegate63 = new SwigDelegateExHostAppServices_63(SwigDirectorMethoddoFullCRCCheck);
265 if (SwigDerivedClassHasMethod("plotSettingsValidator", swigMethodTypes64))
266 swigDelegate64 = new SwigDelegateExHostAppServices_64(SwigDirectorMethodplotSettingsValidator);
267 if (SwigDerivedClassHasMethod("patternManager", swigMethodTypes65))
268 swigDelegate65 = new SwigDelegateExHostAppServices_65(SwigDirectorMethodpatternManager);
269 if (SwigDerivedClassHasMethod("getPassword", swigMethodTypes66))
270 swigDelegate66 = new SwigDelegateExHostAppServices_66(SwigDirectorMethodgetPassword);
271 if (SwigDerivedClassHasMethod("getPasswordCache", swigMethodTypes67))
272 swigDelegate67 = new SwigDelegateExHostAppServices_67(SwigDirectorMethodgetPasswordCache);
273 if (SwigDerivedClassHasMethod("newPageController", swigMethodTypes68))
274 swigDelegate68 = new SwigDelegateExHostAppServices_68(SwigDirectorMethodnewPageController);
275 if (SwigDerivedClassHasMethod("layoutManager", swigMethodTypes69))
276 swigDelegate69 = new SwigDelegateExHostAppServices_69(SwigDirectorMethodlayoutManager);
277 if (SwigDerivedClassHasMethod("educationalPlotStamp", swigMethodTypes70))
278 swigDelegate70 = new SwigDelegateExHostAppServices_70(SwigDirectorMethodeducationalPlotStamp);
279 if (SwigDerivedClassHasMethod("getThumbSize", swigMethodTypes71))
280 swigDelegate71 = new SwigDelegateExHostAppServices_71(SwigDirectorMethodgetThumbSize);
281 if (SwigDerivedClassHasMethod("getHistoryFile", swigMethodTypes72))
282 swigDelegate72 = new SwigDelegateExHostAppServices_72(SwigDirectorMethodgetHistoryFile);
283 if (SwigDerivedClassHasMethod("fixName", swigMethodTypes73))
284 swigDelegate73 = new SwigDelegateExHostAppServices_73(SwigDirectorMethodfixName);
285 if (SwigDerivedClassHasMethod("start", swigMethodTypes74))
286 swigDelegate74 = new SwigDelegateExHostAppServices_74(SwigDirectorMethodstart__SWIG_0);
287 if (SwigDerivedClassHasMethod("start", swigMethodTypes75))
288 swigDelegate75 = new SwigDelegateExHostAppServices_75(SwigDirectorMethodstart__SWIG_1);
289 if (SwigDerivedClassHasMethod("stop", swigMethodTypes76))
290 swigDelegate76 = new SwigDelegateExHostAppServices_76(SwigDirectorMethodstop);
291 if (SwigDerivedClassHasMethod("meterProgress", swigMethodTypes77))
292 swigDelegate77 = new SwigDelegateExHostAppServices_77(SwigDirectorMethodmeterProgress);
293 if (SwigDerivedClassHasMethod("setLimit", swigMethodTypes78))
294 swigDelegate78 = new SwigDelegateExHostAppServices_78(SwigDirectorMethodsetLimit);
295 TD_DbPINVOKE.ExHostAppServices_director_connect(swigCPtr, swigDelegate0, swigDelegate1, swigDelegate2, swigDelegate3, swigDelegate4, swigDelegate5, swigDelegate6, swigDelegate7, swigDelegate8, swigDelegate9, swigDelegate10, swigDelegate11, swigDelegate12, swigDelegate13, swigDelegate14, swigDelegate15, swigDelegate16, swigDelegate17, swigDelegate18, swigDelegate19, swigDelegate20, swigDelegate21, swigDelegate22, swigDelegate23, swigDelegate24, swigDelegate25, swigDelegate26, swigDelegate27, swigDelegate28, swigDelegate29, swigDelegate30, swigDelegate31, swigDelegate32, swigDelegate33, swigDelegate34, swigDelegate35, swigDelegate36, swigDelegate37, swigDelegate38, swigDelegate39, swigDelegate40, swigDelegate41, swigDelegate42, swigDelegate43, swigDelegate44, swigDelegate45, swigDelegate46, swigDelegate47, swigDelegate48, swigDelegate49, swigDelegate50, swigDelegate51, swigDelegate52, swigDelegate53, swigDelegate54, swigDelegate55, swigDelegate56, swigDelegate57, swigDelegate58, swigDelegate59, swigDelegate60, swigDelegate61, swigDelegate62, swigDelegate63, swigDelegate64, swigDelegate65, swigDelegate66, swigDelegate67, swigDelegate68, swigDelegate69, swigDelegate70, swigDelegate71, swigDelegate72, swigDelegate73, swigDelegate74, swigDelegate75, swigDelegate76, swigDelegate77, swigDelegate78);
296 }
297
298 private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) {
299 global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, global::System.Reflection.BindingFlags.Public | global::System.Reflection.BindingFlags.NonPublic | global::System.Reflection.BindingFlags.Instance, null, methodTypes, null);
300 bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(ExHostAppServices));
301 return hasDerivedMethod;
302 }
303
304 private IntPtr SwigDirectorMethodqueryX(IntPtr protocolClass) {
305 return
306 // csdirectorout for OdRxObject*, OdRxObject&
308 (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),protocolClass,false) /*createInt 6_2*/ // csdirectorin for smart pointer
309)).Handle
310;
311 }
312
313 private IntPtr SwigDirectorMethodisA() {
314 return
315 // csdirectorout for OdRxClass*, OdRxClass&
316 OdRxClass.getCPtr(isA()).Handle
317;
318 }
319
320 private void SwigDirectorMethodcopyFrom(IntPtr pSource) {
321 copyFrom(
322 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pSource,false) /*createInt 6_2*/ // csdirectorin for smart pointer
323);
324 }
325
326 [return: MarshalAs(UnmanagedType.LPWStr)]
327 private String SwigDirectorMethodfindFile__SWIG_0([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb, int hint) {
328 return findFile(filename,
329 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pDb,false) /*createInt 6_1*/ // csdirectorin for smart pointer
331 }
332
333 [return: MarshalAs(UnmanagedType.LPWStr)]
334 private String SwigDirectorMethodfindFile__SWIG_1([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb) {
335 return findFile(filename,
336 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pDb,false) /*createInt 6_1*/ // csdirectorin for smart pointer
337);
338 }
339
340 [return: MarshalAs(UnmanagedType.LPWStr)]
341 private String SwigDirectorMethodfindFile__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String filename) {
342 return findFile(filename);
343 }
344
345 private global::System.IntPtr SwigDirectorMethodnewProgressMeter() {
347 }
348
349 private void SwigDirectorMethodreleaseProgressMeter(global::System.IntPtr pProgressMeter) {
350 releaseProgressMeter((pProgressMeter == global::System.IntPtr.Zero) ? null : new OdDbHostAppProgressMeter(pProgressMeter, false));
351 }
352
353 [return: MarshalAs(UnmanagedType.LPWStr)]
354 private String SwigDirectorMethodprogram() {
355 return program();
356 }
357
358 [return: MarshalAs(UnmanagedType.LPWStr)]
359 private String SwigDirectorMethodproduct() {
360 return product();
361 }
362
363 [return: MarshalAs(UnmanagedType.LPWStr)]
364 private String SwigDirectorMethodcompanyName() {
365 return companyName();
366 }
367
368 private int SwigDirectorMethodprodcode() {
369 return (int)prodcode();
370 }
371
372 [return: MarshalAs(UnmanagedType.LPWStr)]
373 private String SwigDirectorMethodreleaseMajorMinorString() {
375 }
376
377 private int SwigDirectorMethodreleaseMajorVersion() {
378 return releaseMajorVersion();
379 }
380
381 private int SwigDirectorMethodreleaseMinorVersion() {
382 return releaseMinorVersion();
383 }
384
385 [return: MarshalAs(UnmanagedType.LPWStr)]
386 private String SwigDirectorMethodversionString() {
387 return versionString();
388 }
389
390 private void SwigDirectorMethodwarning__SWIG_0([MarshalAs(UnmanagedType.LPWStr)]String message) {
391 warning(message);
392 }
393
394 private void SwigDirectorMethodwarning__SWIG_1(string warnVisGroup, [MarshalAs(UnmanagedType.LPWStr)]String message) {
395 warning(warnVisGroup, message);
396 }
397
398 private void SwigDirectorMethodwarning__SWIG_2(int warningOb) {
399 warning((OdResult)warningOb);
400 }
401
402 private void SwigDirectorMethodwarning__SWIG_3(string warnVisGroup, int warningOb) {
403 warning(warnVisGroup, (OdResult)warningOb);
404 }
405
406 [return: MarshalAs(UnmanagedType.LPWStr)]
407 private String SwigDirectorMethodgetErrorDescription(uint errorCode) {
408 return getErrorDescription(errorCode);
409 }
410
411 private IntPtr SwigDirectorMethodnewUndoController() {
413 }
414
415 private IntPtr SwigDirectorMethodnewUndoStream() {
416 return OdStreamBuf.getCPtr(newUndoStream()).Handle;
417 }
418
419 private void SwigDirectorMethodauditPrintReport(global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String strLine, int printDest) {
420 auditPrintReport((pAuditInfo == global::System.IntPtr.Zero) ? null : new OdAuditInfo(pAuditInfo, false), strLine, printDest);
421 }
422
423 private bool SwigDirectorMethodttfFileNameByDescriptor(global::System.IntPtr description, IntPtr filename) {
424 string tmp_filename = Marshal.PtrToStringUni(filename);
425 string saved_filename = tmp_filename;
426 try {
427 return ttfFileNameByDescriptor(new OdTtfDescriptor(description, false), ref tmp_filename);
428 } finally {
429 if (tmp_filename != saved_filename) filename = Marshal.StringToCoTaskMemUni(tmp_filename);
430 }
431 }
432
433 [return: MarshalAs(UnmanagedType.LPWStr)]
434 private String SwigDirectorMethodgetAlternateFontName() {
435 return getAlternateFontName();
436 }
437
438 [return: MarshalAs(UnmanagedType.LPWStr)]
439 private String SwigDirectorMethodgetFontMapFileName() {
440 return getFontMapFileName();
441 }
442
443 [return: MarshalAs(UnmanagedType.LPWStr)]
444 private String SwigDirectorMethodgetPreferableFont([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType) {
445 return getPreferableFont(fontName, (OdFontType)fontType);
446 }
447
448 [return: MarshalAs(UnmanagedType.LPWStr)]
449 private String SwigDirectorMethodgetSubstituteFont([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType) {
450 return getSubstituteFont(fontName, (OdFontType)fontType);
451 }
452
453 [return: MarshalAs(UnmanagedType.LPWStr)]
454 private String SwigDirectorMethodgetSubstituteFontByChar(IntPtr pFont, char /*SIMPLETYPE*/ unicodeChar, IntPtr pDb) {
456 (OdFont)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdFont),pFont,false) /*createInt 6_3*/ // csdirectorin for smart pointer
457, unicodeChar /*SIMPLETYPE*/,
458 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pDb,false) /*createInt 6_1*/ // csdirectorin for smart pointer
459);
460 }
461
462 private bool SwigDirectorMethodgetSystemFontFolders(global::System.IntPtr aDirs) {
463 return getSystemFontFolders(new OdStringArray(aDirs, false));
464 }
465
466 private void SwigDirectorMethodcollectFilePathsInDirectory__SWIG_0(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath, [MarshalAs(UnmanagedType.LPWStr)]String sFilter) {
467 collectFilePathsInDirectory(new OdStringArray(res, false), sPath, sFilter);
468 }
469
470 private void SwigDirectorMethodcollectFilePathsInDirectory__SWIG_1(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath) {
471 collectFilePathsInDirectory(new OdStringArray(res, false), sPath);
472 }
473
474 [return: MarshalAs(UnmanagedType.LPWStr)]
475 private String SwigDirectorMethodfileDialog__SWIG_0(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename, [MarshalAs(UnmanagedType.LPWStr)]String filter) {
476 return fileDialog(flags, dialogCaption, defExt, defFilename, filter);
477 }
478
479 [return: MarshalAs(UnmanagedType.LPWStr)]
480 private String SwigDirectorMethodfileDialog__SWIG_1(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename) {
481 return fileDialog(flags, dialogCaption, defExt, defFilename);
482 }
483
484 [return: MarshalAs(UnmanagedType.LPWStr)]
485 private String SwigDirectorMethodfileDialog__SWIG_2(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt) {
486 return fileDialog(flags, dialogCaption, defExt);
487 }
488
489 [return: MarshalAs(UnmanagedType.LPWStr)]
490 private String SwigDirectorMethodfileDialog__SWIG_3(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption) {
491 return fileDialog(flags, dialogCaption);
492 }
493
494 [return: MarshalAs(UnmanagedType.LPWStr)]
495 private String SwigDirectorMethodfileDialog__SWIG_4(int flags) {
496 return fileDialog(flags);
497 }
498
499 private IntPtr SwigDirectorMethodgsBitmapDevice__SWIG_0(IntPtr pViewObj, IntPtr pDb, UInt32 /*SIMPLETYPE*/ flags) {
501 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pViewObj,false) /*createInt 6_1*/ // csdirectorin for smart pointer
502,
503 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pDb,false) /*createInt 6_1*/ // csdirectorin for smart pointer
504, flags /*SIMPLETYPE*/)).Handle;
505 }
506
507 private IntPtr SwigDirectorMethodgsBitmapDevice__SWIG_1(IntPtr pViewObj, IntPtr pDb) {
509 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pViewObj,false) /*createInt 6_1*/ // csdirectorin for smart pointer
510,
511 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pDb,false) /*createInt 6_1*/ // csdirectorin for smart pointer
512)).Handle;
513 }
514
515 private IntPtr SwigDirectorMethodgsBitmapDevice__SWIG_2(IntPtr pViewObj) {
517 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pViewObj,false) /*createInt 6_1*/ // csdirectorin for smart pointer
518)).Handle;
519 }
520
521 private IntPtr SwigDirectorMethodgsBitmapDevice__SWIG_3() {
522 return OdGsDevice.getCPtr(gsBitmapDevice()).Handle;
523 }
524
525 [return: MarshalAs(UnmanagedType.LPWStr)]
526 private String SwigDirectorMethodgetTempPath() {
527 return getTempPath();
528 }
529
530 private int SwigDirectorMethodnumThreads(int mtMode) {
531 return numThreads((MultiThreadedMode)mtMode);
532 }
533
534 private int SwigDirectorMethodgetEnv([MarshalAs(UnmanagedType.LPWStr)]String varName, IntPtr value) {
535 string tmp_value = Marshal.PtrToStringUni(value);
536 string saved_value = tmp_value;
537 try {
538 return (int)getEnv(varName, ref tmp_value);
539 } finally {
540 if (tmp_value != saved_value) value = Marshal.StringToCoTaskMemUni(tmp_value);
541 }
542 }
543
544 private int SwigDirectorMethodsetEnv([MarshalAs(UnmanagedType.LPWStr)]String varName, [MarshalAs(UnmanagedType.LPWStr)]String newValue) {
545 return (int)setEnv(varName, newValue);
546 }
547
548 private IntPtr SwigDirectorMethoddatabaseClass() {
549 return
550 // csdirectorout for OdRxClass*, OdRxClass&
552;
553 }
554
555 private IntPtr SwigDirectorMethodreadFile__SWIG_0(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad, [MarshalAs(UnmanagedType.LPWStr)]String password) {
556 return OdDbDatabase.getCPtr(readFile(
557 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
558, allowCPConversion, partialLoad, password)).Handle;
559 }
560
561 private IntPtr SwigDirectorMethodreadFile__SWIG_1(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad) {
562 return OdDbDatabase.getCPtr(readFile(
563 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
564, allowCPConversion, partialLoad)).Handle;
565 }
566
567 private IntPtr SwigDirectorMethodreadFile__SWIG_2(IntPtr pStreamBuf, bool allowCPConversion) {
568 return OdDbDatabase.getCPtr(readFile(
569 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
570, allowCPConversion)).Handle;
571 }
572
573 private IntPtr SwigDirectorMethodreadFile__SWIG_3(IntPtr pStreamBuf) {
574 return OdDbDatabase.getCPtr(readFile(
575 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
576)).Handle;
577 }
578
579 private IntPtr SwigDirectorMethodrecoverFile__SWIG_0(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String password) {
580 return OdDbDatabase.getCPtr(recoverFile(
581 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
582, (pAuditInfo == global::System.IntPtr.Zero) ? null : new OdDbAuditInfo(pAuditInfo, false), password)).Handle;
583 }
584
585 private IntPtr SwigDirectorMethodrecoverFile__SWIG_1(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo) {
586 return OdDbDatabase.getCPtr(recoverFile(
587 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
588, (pAuditInfo == global::System.IntPtr.Zero) ? null : new OdDbAuditInfo(pAuditInfo, false))).Handle;
589 }
590
591 private IntPtr SwigDirectorMethodrecoverFile__SWIG_2(IntPtr pStreamBuf) {
592 return OdDbDatabase.getCPtr(recoverFile(
593 (OdStreamBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdStreamBuf),pStreamBuf,false) /*createInt 6_1*/ // csdirectorin for smart pointer
594)).Handle;
595 }
596
597 private IntPtr SwigDirectorMethodreadFile([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode, [MarshalAs(UnmanagedType.LPWStr)]String password) {
598 return OdDbDatabase.getCPtr(readFile(filename, allowCPConversion, partialLoad, (FileShareMode)shareMode, password)).Handle;
599 }
600
601 private IntPtr SwigDirectorMethodreadFile__SWIG_5([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode) {
602 return OdDbDatabase.getCPtr(readFile(filename, allowCPConversion, partialLoad, (FileShareMode)shareMode)).Handle;
603 }
604
605 private IntPtr SwigDirectorMethodreadFile__SWIG_6([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad) {
606 return OdDbDatabase.getCPtr(readFile(filename, allowCPConversion, partialLoad)).Handle;
607 }
608
609 private IntPtr SwigDirectorMethodreadFile__SWIG_7([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion) {
610 return OdDbDatabase.getCPtr(readFile(filename, allowCPConversion)).Handle;
611 }
612
613 private IntPtr SwigDirectorMethodreadFile__SWIG_8([MarshalAs(UnmanagedType.LPWStr)]String filename) {
614 return OdDbDatabase.getCPtr(readFile(filename)).Handle;
615 }
616
617 private void SwigDirectorMethodwarning1(int warningOb, global::System.IntPtr objectId) {
618 warning1((OdResult)warningOb, new OdDbObjectId(objectId, true));
619 }
620
621 private void SwigDirectorMethodwarning(string warnVisGroup, int warningOb, global::System.IntPtr objectId) {
622 warning(warnVisGroup, (OdResult)warningOb, new OdDbObjectId(objectId, true));
623 }
624
625 private void SwigDirectorMethodwarning2(global::System.IntPtr err) {
626 warning2(new OdError(err, false));
627 }
628
629 private void SwigDirectorMethodwarning3(string warnVisGroup, global::System.IntPtr err) {
630 warning3(warnVisGroup, new OdError(err, false));
631 }
632
633 private bool SwigDirectorMethoddoFullCRCCheck() {
634 return doFullCRCCheck();
635 }
636
637 private IntPtr SwigDirectorMethodplotSettingsValidator() {
638 return
639 // csdirectorout for OdDbPlotSettingsValidator*, OdDbPlotSettingsValidator&
640 OdDbPlotSettingsValidator.getCPtr(plotSettingsValidator()).Handle
641;
642 }
643
644 private IntPtr SwigDirectorMethodpatternManager() {
645 return
646 // csdirectorout for OdHatchPatternManager*, OdHatchPatternManager&
647 OdHatchPatternManager.getCPtr(patternManager()).Handle
648;
649 }
650
651 private bool SwigDirectorMethodgetPassword([MarshalAs(UnmanagedType.LPWStr)]String dwgName, bool isXref, IntPtr password) {
652 string tmp_password = Marshal.PtrToStringUni(password);
653 string saved_password = tmp_password;
654 try {
655 return getPassword(dwgName, isXref, ref tmp_password);
656 } finally {
657 if (tmp_password != saved_password) password = Marshal.StringToCoTaskMemUni(tmp_password);
658 }
659 }
660
661 private IntPtr SwigDirectorMethodgetPasswordCache() {
662 return OdPwdCache.getCPtr(getPasswordCache()).Handle;
663 }
664
665 private IntPtr SwigDirectorMethodnewPageController() {
666 return OdDbPageController.getCPtr(newPageController()).Handle;
667 }
668
669 private IntPtr SwigDirectorMethodlayoutManager() {
670 return OdDbLayoutManager.getCPtr(layoutManager()).Handle;
671 }
672
673 private UInt32 /*SIMPLETYPE*/ SwigDirectorMethodeducationalPlotStamp() {
674 return educationalPlotStamp() /*SIMPLETYPE*/;
675 }
676
677 private void SwigDirectorMethodgetThumbSize(uint nWidth, uint nHeight) {
678 getThumbSize(out nWidth, out nHeight);
679 }
680
681 private IntPtr SwigDirectorMethodgetHistoryFile(IntPtr arg0) {
683 (OdDbDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDatabase),arg0,false) /*createInt 6_1*/ // csdirectorin for smart pointer
684)).Handle;
685 }
686
687 [return: MarshalAs(UnmanagedType.LPWStr)]
688 private String SwigDirectorMethodfixName(IntPtr pRecord) {
689 return fixName(
690 (OdDbSymbolTableRecord)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbSymbolTableRecord),pRecord,false) /*createInt 6_2*/ // csdirectorin for smart pointer
691);
692 }
693
694 private void SwigDirectorMethodstart__SWIG_0([MarshalAs(UnmanagedType.LPWStr)]String displayString) {
695 start(displayString);
696 }
697
698 private void SwigDirectorMethodstart__SWIG_1() {
699 start();
700 }
701
702 private void SwigDirectorMethodstop() {
703 stop();
704 }
705
706 private void SwigDirectorMethodmeterProgress() {
708 }
709
710 private void SwigDirectorMethodsetLimit(int max) {
711 setLimit(max);
712 }
713
714 public delegate IntPtr SwigDelegateExHostAppServices_0(IntPtr protocolClass);
715 public delegate IntPtr SwigDelegateExHostAppServices_1();
716 public delegate void SwigDelegateExHostAppServices_2(IntPtr pSource);
717 [return: MarshalAs(UnmanagedType.LPWStr)]
718 public delegate String SwigDelegateExHostAppServices_3([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb, int hint);
719 [return: MarshalAs(UnmanagedType.LPWStr)]
720 public delegate String SwigDelegateExHostAppServices_4([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb);
721 [return: MarshalAs(UnmanagedType.LPWStr)]
722 public delegate String SwigDelegateExHostAppServices_5([MarshalAs(UnmanagedType.LPWStr)]String filename);
723 public delegate global::System.IntPtr SwigDelegateExHostAppServices_6();
724 public delegate void SwigDelegateExHostAppServices_7(global::System.IntPtr pProgressMeter);
725 [return: MarshalAs(UnmanagedType.LPWStr)]
727 [return: MarshalAs(UnmanagedType.LPWStr)]
729 [return: MarshalAs(UnmanagedType.LPWStr)]
731 public delegate int SwigDelegateExHostAppServices_11();
732 [return: MarshalAs(UnmanagedType.LPWStr)]
734 public delegate int SwigDelegateExHostAppServices_13();
735 public delegate int SwigDelegateExHostAppServices_14();
736 [return: MarshalAs(UnmanagedType.LPWStr)]
738 public delegate void SwigDelegateExHostAppServices_16([MarshalAs(UnmanagedType.LPWStr)]String message);
739 public delegate void SwigDelegateExHostAppServices_17(string warnVisGroup, [MarshalAs(UnmanagedType.LPWStr)]String message);
740 public delegate void SwigDelegateExHostAppServices_18(int warningOb);
741 public delegate void SwigDelegateExHostAppServices_19(string warnVisGroup, int warningOb);
742 [return: MarshalAs(UnmanagedType.LPWStr)]
743 public delegate String SwigDelegateExHostAppServices_20(uint errorCode);
744 public delegate IntPtr SwigDelegateExHostAppServices_21();
745 public delegate IntPtr SwigDelegateExHostAppServices_22();
746 public delegate void SwigDelegateExHostAppServices_23(global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String strLine, int printDest);
747 public delegate bool SwigDelegateExHostAppServices_24(global::System.IntPtr description, IntPtr filename);
748 [return: MarshalAs(UnmanagedType.LPWStr)]
750 [return: MarshalAs(UnmanagedType.LPWStr)]
752 [return: MarshalAs(UnmanagedType.LPWStr)]
753 public delegate String SwigDelegateExHostAppServices_27([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType);
754 [return: MarshalAs(UnmanagedType.LPWStr)]
755 public delegate String SwigDelegateExHostAppServices_28([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType);
756 [return: MarshalAs(UnmanagedType.LPWStr)]
757 public delegate String SwigDelegateExHostAppServices_29(IntPtr pFont, char /*SIMPLETYPE*/ unicodeChar, IntPtr pDb);
758 public delegate bool SwigDelegateExHostAppServices_30(global::System.IntPtr aDirs);
759 public delegate void SwigDelegateExHostAppServices_31(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath, [MarshalAs(UnmanagedType.LPWStr)]String sFilter);
760 public delegate void SwigDelegateExHostAppServices_32(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath);
761 [return: MarshalAs(UnmanagedType.LPWStr)]
762 public delegate String SwigDelegateExHostAppServices_33(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename, [MarshalAs(UnmanagedType.LPWStr)]String filter);
763 [return: MarshalAs(UnmanagedType.LPWStr)]
764 public delegate String SwigDelegateExHostAppServices_34(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename);
765 [return: MarshalAs(UnmanagedType.LPWStr)]
766 public delegate String SwigDelegateExHostAppServices_35(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt);
767 [return: MarshalAs(UnmanagedType.LPWStr)]
768 public delegate String SwigDelegateExHostAppServices_36(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption);
769 [return: MarshalAs(UnmanagedType.LPWStr)]
770 public delegate String SwigDelegateExHostAppServices_37(int flags);
771 public delegate IntPtr SwigDelegateExHostAppServices_38(IntPtr pViewObj, IntPtr pDb, UInt32 /*SIMPLETYPE*/ flags);
772 public delegate IntPtr SwigDelegateExHostAppServices_39(IntPtr pViewObj, IntPtr pDb);
773 public delegate IntPtr SwigDelegateExHostAppServices_40(IntPtr pViewObj);
774 public delegate IntPtr SwigDelegateExHostAppServices_41();
775 [return: MarshalAs(UnmanagedType.LPWStr)]
777 public delegate int SwigDelegateExHostAppServices_43(int mtMode);
778 public delegate int SwigDelegateExHostAppServices_44([MarshalAs(UnmanagedType.LPWStr)]String varName, IntPtr value);
779 public delegate int SwigDelegateExHostAppServices_45([MarshalAs(UnmanagedType.LPWStr)]String varName, [MarshalAs(UnmanagedType.LPWStr)]String newValue);
780 public delegate IntPtr SwigDelegateExHostAppServices_46();
781 public delegate IntPtr SwigDelegateExHostAppServices_47(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad, [MarshalAs(UnmanagedType.LPWStr)]String password);
782 public delegate IntPtr SwigDelegateExHostAppServices_48(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad);
783 public delegate IntPtr SwigDelegateExHostAppServices_49(IntPtr pStreamBuf, bool allowCPConversion);
784 public delegate IntPtr SwigDelegateExHostAppServices_50(IntPtr pStreamBuf);
785 public delegate IntPtr SwigDelegateExHostAppServices_51(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String password);
786 public delegate IntPtr SwigDelegateExHostAppServices_52(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo);
787 public delegate IntPtr SwigDelegateExHostAppServices_53(IntPtr pStreamBuf);
788 public delegate IntPtr SwigDelegateExHostAppServices_54([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode, [MarshalAs(UnmanagedType.LPWStr)]String password);
789 public delegate IntPtr SwigDelegateExHostAppServices_55([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode);
790 public delegate IntPtr SwigDelegateExHostAppServices_56([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad);
791 public delegate IntPtr SwigDelegateExHostAppServices_57([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion);
792 public delegate IntPtr SwigDelegateExHostAppServices_58([MarshalAs(UnmanagedType.LPWStr)]String filename);
793 public delegate void SwigDelegateExHostAppServices_59(int warningOb, global::System.IntPtr objectId);
794 public delegate void SwigDelegateExHostAppServices_60(string warnVisGroup, int warningOb, global::System.IntPtr objectId);
795 public delegate void SwigDelegateExHostAppServices_61(global::System.IntPtr err);
796 public delegate void SwigDelegateExHostAppServices_62(string warnVisGroup, global::System.IntPtr err);
797 public delegate bool SwigDelegateExHostAppServices_63();
798 public delegate IntPtr SwigDelegateExHostAppServices_64();
799 public delegate IntPtr SwigDelegateExHostAppServices_65();
800 public delegate bool SwigDelegateExHostAppServices_66([MarshalAs(UnmanagedType.LPWStr)]String dwgName, bool isXref, IntPtr password);
801 public delegate IntPtr SwigDelegateExHostAppServices_67();
802 public delegate IntPtr SwigDelegateExHostAppServices_68();
803 public delegate IntPtr SwigDelegateExHostAppServices_69();
804 public delegate UInt32 /*SIMPLETYPE*/ SwigDelegateExHostAppServices_70();
805 public delegate void SwigDelegateExHostAppServices_71(uint nWidth, uint nHeight);
806 public delegate IntPtr SwigDelegateExHostAppServices_72(IntPtr arg0);
807 [return: MarshalAs(UnmanagedType.LPWStr)]
808 public delegate String SwigDelegateExHostAppServices_73(IntPtr pRecord);
809 public delegate void SwigDelegateExHostAppServices_74([MarshalAs(UnmanagedType.LPWStr)]String displayString);
810 public delegate void SwigDelegateExHostAppServices_75();
811 public delegate void SwigDelegateExHostAppServices_76();
812 public delegate void SwigDelegateExHostAppServices_77();
813 public delegate void SwigDelegateExHostAppServices_78(int max);
814
815 private SwigDelegateExHostAppServices_0 swigDelegate0;
816 private SwigDelegateExHostAppServices_1 swigDelegate1;
817 private SwigDelegateExHostAppServices_2 swigDelegate2;
818 private SwigDelegateExHostAppServices_3 swigDelegate3;
819 private SwigDelegateExHostAppServices_4 swigDelegate4;
820 private SwigDelegateExHostAppServices_5 swigDelegate5;
821 private SwigDelegateExHostAppServices_6 swigDelegate6;
822 private SwigDelegateExHostAppServices_7 swigDelegate7;
823 private SwigDelegateExHostAppServices_8 swigDelegate8;
824 private SwigDelegateExHostAppServices_9 swigDelegate9;
825 private SwigDelegateExHostAppServices_10 swigDelegate10;
826 private SwigDelegateExHostAppServices_11 swigDelegate11;
827 private SwigDelegateExHostAppServices_12 swigDelegate12;
828 private SwigDelegateExHostAppServices_13 swigDelegate13;
829 private SwigDelegateExHostAppServices_14 swigDelegate14;
830 private SwigDelegateExHostAppServices_15 swigDelegate15;
831 private SwigDelegateExHostAppServices_16 swigDelegate16;
832 private SwigDelegateExHostAppServices_17 swigDelegate17;
833 private SwigDelegateExHostAppServices_18 swigDelegate18;
834 private SwigDelegateExHostAppServices_19 swigDelegate19;
835 private SwigDelegateExHostAppServices_20 swigDelegate20;
836 private SwigDelegateExHostAppServices_21 swigDelegate21;
837 private SwigDelegateExHostAppServices_22 swigDelegate22;
838 private SwigDelegateExHostAppServices_23 swigDelegate23;
839 private SwigDelegateExHostAppServices_24 swigDelegate24;
840 private SwigDelegateExHostAppServices_25 swigDelegate25;
841 private SwigDelegateExHostAppServices_26 swigDelegate26;
842 private SwigDelegateExHostAppServices_27 swigDelegate27;
843 private SwigDelegateExHostAppServices_28 swigDelegate28;
844 private SwigDelegateExHostAppServices_29 swigDelegate29;
845 private SwigDelegateExHostAppServices_30 swigDelegate30;
846 private SwigDelegateExHostAppServices_31 swigDelegate31;
847 private SwigDelegateExHostAppServices_32 swigDelegate32;
848 private SwigDelegateExHostAppServices_33 swigDelegate33;
849 private SwigDelegateExHostAppServices_34 swigDelegate34;
850 private SwigDelegateExHostAppServices_35 swigDelegate35;
851 private SwigDelegateExHostAppServices_36 swigDelegate36;
852 private SwigDelegateExHostAppServices_37 swigDelegate37;
853 private SwigDelegateExHostAppServices_38 swigDelegate38;
854 private SwigDelegateExHostAppServices_39 swigDelegate39;
855 private SwigDelegateExHostAppServices_40 swigDelegate40;
856 private SwigDelegateExHostAppServices_41 swigDelegate41;
857 private SwigDelegateExHostAppServices_42 swigDelegate42;
858 private SwigDelegateExHostAppServices_43 swigDelegate43;
859 private SwigDelegateExHostAppServices_44 swigDelegate44;
860 private SwigDelegateExHostAppServices_45 swigDelegate45;
861 private SwigDelegateExHostAppServices_46 swigDelegate46;
862 private SwigDelegateExHostAppServices_47 swigDelegate47;
863 private SwigDelegateExHostAppServices_48 swigDelegate48;
864 private SwigDelegateExHostAppServices_49 swigDelegate49;
865 private SwigDelegateExHostAppServices_50 swigDelegate50;
866 private SwigDelegateExHostAppServices_51 swigDelegate51;
867 private SwigDelegateExHostAppServices_52 swigDelegate52;
868 private SwigDelegateExHostAppServices_53 swigDelegate53;
869 private SwigDelegateExHostAppServices_54 swigDelegate54;
870 private SwigDelegateExHostAppServices_55 swigDelegate55;
871 private SwigDelegateExHostAppServices_56 swigDelegate56;
872 private SwigDelegateExHostAppServices_57 swigDelegate57;
873 private SwigDelegateExHostAppServices_58 swigDelegate58;
874 private SwigDelegateExHostAppServices_59 swigDelegate59;
875 private SwigDelegateExHostAppServices_60 swigDelegate60;
876 private SwigDelegateExHostAppServices_61 swigDelegate61;
877 private SwigDelegateExHostAppServices_62 swigDelegate62;
878 private SwigDelegateExHostAppServices_63 swigDelegate63;
879 private SwigDelegateExHostAppServices_64 swigDelegate64;
880 private SwigDelegateExHostAppServices_65 swigDelegate65;
881 private SwigDelegateExHostAppServices_66 swigDelegate66;
882 private SwigDelegateExHostAppServices_67 swigDelegate67;
883 private SwigDelegateExHostAppServices_68 swigDelegate68;
884 private SwigDelegateExHostAppServices_69 swigDelegate69;
885 private SwigDelegateExHostAppServices_70 swigDelegate70;
886 private SwigDelegateExHostAppServices_71 swigDelegate71;
887 private SwigDelegateExHostAppServices_72 swigDelegate72;
888 private SwigDelegateExHostAppServices_73 swigDelegate73;
889 private SwigDelegateExHostAppServices_74 swigDelegate74;
890 private SwigDelegateExHostAppServices_75 swigDelegate75;
891 private SwigDelegateExHostAppServices_76 swigDelegate76;
892 private SwigDelegateExHostAppServices_77 swigDelegate77;
893 private SwigDelegateExHostAppServices_78 swigDelegate78;
894
895 private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { typeof(OdRxClass) };
896 private static global::System.Type[] swigMethodTypes1 = new global::System.Type[] { };
897 private static global::System.Type[] swigMethodTypes2 = new global::System.Type[] { typeof(OdRxObject) };
898 private static global::System.Type[] swigMethodTypes3 = new global::System.Type[] { typeof(String), typeof(OdRxObject), typeof(OdDbBaseHostAppServices.FindFileHint) };
899 private static global::System.Type[] swigMethodTypes4 = new global::System.Type[] { typeof(String), typeof(OdRxObject) };
900 private static global::System.Type[] swigMethodTypes5 = new global::System.Type[] { typeof(String) };
901 private static global::System.Type[] swigMethodTypes6 = new global::System.Type[] { };
902 private static global::System.Type[] swigMethodTypes7 = new global::System.Type[] { typeof(OdDbHostAppProgressMeter) };
903 private static global::System.Type[] swigMethodTypes8 = new global::System.Type[] { };
904 private static global::System.Type[] swigMethodTypes9 = new global::System.Type[] { };
905 private static global::System.Type[] swigMethodTypes10 = new global::System.Type[] { };
906 private static global::System.Type[] swigMethodTypes11 = new global::System.Type[] { };
907 private static global::System.Type[] swigMethodTypes12 = new global::System.Type[] { };
908 private static global::System.Type[] swigMethodTypes13 = new global::System.Type[] { };
909 private static global::System.Type[] swigMethodTypes14 = new global::System.Type[] { };
910 private static global::System.Type[] swigMethodTypes15 = new global::System.Type[] { };
911 private static global::System.Type[] swigMethodTypes16 = new global::System.Type[] { typeof(String) };
912 private static global::System.Type[] swigMethodTypes17 = new global::System.Type[] { typeof(string), typeof(String) };
913 private static global::System.Type[] swigMethodTypes18 = new global::System.Type[] { typeof(OdResult) };
914 private static global::System.Type[] swigMethodTypes19 = new global::System.Type[] { typeof(string), typeof(OdResult) };
915 private static global::System.Type[] swigMethodTypes20 = new global::System.Type[] { typeof(uint) };
916 private static global::System.Type[] swigMethodTypes21 = new global::System.Type[] { };
917 private static global::System.Type[] swigMethodTypes22 = new global::System.Type[] { };
918 private static global::System.Type[] swigMethodTypes23 = new global::System.Type[] { typeof(OdAuditInfo), typeof(String), typeof(int) };
919 private static global::System.Type[] swigMethodTypes24 = new global::System.Type[] { typeof(OdTtfDescriptor), typeof(string).MakeByRefType() };
920 private static global::System.Type[] swigMethodTypes25 = new global::System.Type[] { };
921 private static global::System.Type[] swigMethodTypes26 = new global::System.Type[] { };
922 private static global::System.Type[] swigMethodTypes27 = new global::System.Type[] { typeof(String), typeof(OdFontType) };
923 private static global::System.Type[] swigMethodTypes28 = new global::System.Type[] { typeof(String), typeof(OdFontType) };
924 private static global::System.Type[] swigMethodTypes29 = new global::System.Type[] { typeof(OdFont), typeof(char), typeof(OdRxObject) };
925 private static global::System.Type[] swigMethodTypes30 = new global::System.Type[] { typeof(OdStringArray) };
926 private static global::System.Type[] swigMethodTypes31 = new global::System.Type[] { typeof(OdStringArray), typeof(String), typeof(String) };
927 private static global::System.Type[] swigMethodTypes32 = new global::System.Type[] { typeof(OdStringArray), typeof(String) };
928 private static global::System.Type[] swigMethodTypes33 = new global::System.Type[] { typeof(int), typeof(String), typeof(String), typeof(String), typeof(String) };
929 private static global::System.Type[] swigMethodTypes34 = new global::System.Type[] { typeof(int), typeof(String), typeof(String), typeof(String) };
930 private static global::System.Type[] swigMethodTypes35 = new global::System.Type[] { typeof(int), typeof(String), typeof(String) };
931 private static global::System.Type[] swigMethodTypes36 = new global::System.Type[] { typeof(int), typeof(String) };
932 private static global::System.Type[] swigMethodTypes37 = new global::System.Type[] { typeof(int) };
933 private static global::System.Type[] swigMethodTypes38 = new global::System.Type[] { typeof(OdRxObject), typeof(OdRxObject), typeof(UInt32) };
934 private static global::System.Type[] swigMethodTypes39 = new global::System.Type[] { typeof(OdRxObject), typeof(OdRxObject) };
935 private static global::System.Type[] swigMethodTypes40 = new global::System.Type[] { typeof(OdRxObject) };
936 private static global::System.Type[] swigMethodTypes41 = new global::System.Type[] { };
937 private static global::System.Type[] swigMethodTypes42 = new global::System.Type[] { };
938 private static global::System.Type[] swigMethodTypes43 = new global::System.Type[] { typeof(MultiThreadedMode) };
939 private static global::System.Type[] swigMethodTypes44 = new global::System.Type[] { typeof(String), typeof(string).MakeByRefType() };
940 private static global::System.Type[] swigMethodTypes45 = new global::System.Type[] { typeof(String), typeof(String) };
941 private static global::System.Type[] swigMethodTypes46 = new global::System.Type[] { };
942 private static global::System.Type[] swigMethodTypes47 = new global::System.Type[] { typeof(OdStreamBuf), typeof(bool), typeof(bool), typeof(String) };
943 private static global::System.Type[] swigMethodTypes48 = new global::System.Type[] { typeof(OdStreamBuf), typeof(bool), typeof(bool) };
944 private static global::System.Type[] swigMethodTypes49 = new global::System.Type[] { typeof(OdStreamBuf), typeof(bool) };
945 private static global::System.Type[] swigMethodTypes50 = new global::System.Type[] { typeof(OdStreamBuf) };
946 private static global::System.Type[] swigMethodTypes51 = new global::System.Type[] { typeof(OdStreamBuf), typeof(OdDbAuditInfo), typeof(String) };
947 private static global::System.Type[] swigMethodTypes52 = new global::System.Type[] { typeof(OdStreamBuf), typeof(OdDbAuditInfo) };
948 private static global::System.Type[] swigMethodTypes53 = new global::System.Type[] { typeof(OdStreamBuf) };
949 private static global::System.Type[] swigMethodTypes54 = new global::System.Type[] { typeof(String), typeof(bool), typeof(bool), typeof(FileShareMode), typeof(String) };
950 private static global::System.Type[] swigMethodTypes55 = new global::System.Type[] { typeof(String), typeof(bool), typeof(bool), typeof(FileShareMode) };
951 private static global::System.Type[] swigMethodTypes56 = new global::System.Type[] { typeof(String), typeof(bool), typeof(bool) };
952 private static global::System.Type[] swigMethodTypes57 = new global::System.Type[] { typeof(String), typeof(bool) };
953 private static global::System.Type[] swigMethodTypes58 = new global::System.Type[] { typeof(String) };
954 private static global::System.Type[] swigMethodTypes59 = new global::System.Type[] { typeof(OdResult), typeof(OdDbObjectId) };
955 private static global::System.Type[] swigMethodTypes60 = new global::System.Type[] { typeof(string), typeof(OdResult), typeof(OdDbObjectId) };
956 private static global::System.Type[] swigMethodTypes61 = new global::System.Type[] { typeof(OdError) };
957 private static global::System.Type[] swigMethodTypes62 = new global::System.Type[] { typeof(string), typeof(OdError) };
958 private static global::System.Type[] swigMethodTypes63 = new global::System.Type[] { };
959 private static global::System.Type[] swigMethodTypes64 = new global::System.Type[] { };
960 private static global::System.Type[] swigMethodTypes65 = new global::System.Type[] { };
961 private static global::System.Type[] swigMethodTypes66 = new global::System.Type[] { typeof(String), typeof(bool), typeof(string).MakeByRefType() };
962 private static global::System.Type[] swigMethodTypes67 = new global::System.Type[] { };
963 private static global::System.Type[] swigMethodTypes68 = new global::System.Type[] { };
964 private static global::System.Type[] swigMethodTypes69 = new global::System.Type[] { };
965 private static global::System.Type[] swigMethodTypes70 = new global::System.Type[] { };
966 private static global::System.Type[] swigMethodTypes71 = new global::System.Type[] { typeof(uint).MakeByRefType(), typeof(uint).MakeByRefType() };
967 private static global::System.Type[] swigMethodTypes72 = new global::System.Type[] { typeof(OdDbDatabase) };
968 private static global::System.Type[] swigMethodTypes73 = new global::System.Type[] { typeof(OdDbSymbolTableRecord) };
969 private static global::System.Type[] swigMethodTypes74 = new global::System.Type[] { typeof(String) };
970 private static global::System.Type[] swigMethodTypes75 = new global::System.Type[] { };
971 private static global::System.Type[] swigMethodTypes76 = new global::System.Type[] { };
972 private static global::System.Type[] swigMethodTypes77 = new global::System.Type[] { };
973 private static global::System.Type[] swigMethodTypes78 = new global::System.Type[] { typeof(int) };
974}
975
976}
virtual OdResult getEnv(String varName, ref string value)
virtual int numThreads(MultiThreadedMode mtMode)
virtual bool ttfFileNameByDescriptor(OdTtfDescriptor description, ref string filename)
virtual OdResult setEnv(String varName, String newValue)
static HandleRef getCPtr(OdDbHostAppProgressMeter obj)
static HandleRef getCPtr(OdDbUndoController obj)
static HandleRef getCPtr(OdGsDevice obj)
Definition OdGsDevice.cs:25
static HandleRef getCPtr(OdRxClass obj)
Definition OdRxClass.cs:25
virtual void copyFrom(OdRxObject pSource)
static HandleRef getCPtr(OdRxObject obj)
Definition OdRxObject.cs:26
static HandleRef getCPtr(OdStreamBuf obj)
delegate void SwigDelegateExHostAppServices_62(string warnVisGroup, global::System.IntPtr err)
virtual void start(String displayString)
delegate void SwigDelegateExHostAppServices_7(global::System.IntPtr pProgressMeter)
delegate String SwigDelegateExHostAppServices_15()
delegate IntPtr SwigDelegateExHostAppServices_1()
delegate void SwigDelegateExHostAppServices_32(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath)
delegate int SwigDelegateExHostAppServices_14()
delegate String SwigDelegateExHostAppServices_10()
delegate IntPtr SwigDelegateExHostAppServices_72(IntPtr arg0)
delegate String SwigDelegateExHostAppServices_37(int flags)
delegate IntPtr SwigDelegateExHostAppServices_50(IntPtr pStreamBuf)
delegate void SwigDelegateExHostAppServices_76()
delegate void SwigDelegateExHostAppServices_75()
delegate void SwigDelegateExHostAppServices_77()
delegate String SwigDelegateExHostAppServices_8()
delegate bool SwigDelegateExHostAppServices_63()
delegate String SwigDelegateExHostAppServices_3([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb, int hint)
delegate IntPtr SwigDelegateExHostAppServices_68()
delegate IntPtr SwigDelegateExHostAppServices_38(IntPtr pViewObj, IntPtr pDb, UInt32 flags)
delegate IntPtr SwigDelegateExHostAppServices_53(IntPtr pStreamBuf)
delegate String SwigDelegateExHostAppServices_26()
delegate void SwigDelegateExHostAppServices_16([MarshalAs(UnmanagedType.LPWStr)]String message)
delegate global::System.IntPtr SwigDelegateExHostAppServices_6()
delegate IntPtr SwigDelegateExHostAppServices_65()
delegate String SwigDelegateExHostAppServices_20(uint errorCode)
delegate void SwigDelegateExHostAppServices_60(string warnVisGroup, int warningOb, global::System.IntPtr objectId)
delegate bool SwigDelegateExHostAppServices_24(global::System.IntPtr description, IntPtr filename)
delegate int SwigDelegateExHostAppServices_43(int mtMode)
delegate IntPtr SwigDelegateExHostAppServices_0(IntPtr protocolClass)
delegate String SwigDelegateExHostAppServices_73(IntPtr pRecord)
delegate IntPtr SwigDelegateExHostAppServices_40(IntPtr pViewObj)
delegate void SwigDelegateExHostAppServices_17(string warnVisGroup, [MarshalAs(UnmanagedType.LPWStr)]String message)
delegate String SwigDelegateExHostAppServices_36(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption)
delegate int SwigDelegateExHostAppServices_44([MarshalAs(UnmanagedType.LPWStr)]String varName, IntPtr value)
delegate String SwigDelegateExHostAppServices_5([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate IntPtr SwigDelegateExHostAppServices_56([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad)
delegate IntPtr SwigDelegateExHostAppServices_51(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String password)
delegate void SwigDelegateExHostAppServices_18(int warningOb)
delegate void SwigDelegateExHostAppServices_74([MarshalAs(UnmanagedType.LPWStr)]String displayString)
delegate String SwigDelegateExHostAppServices_12()
delegate String SwigDelegateExHostAppServices_4([MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pDb)
delegate String SwigDelegateExHostAppServices_28([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType)
override OdDbHostAppProgressMeter newProgressMeter()
delegate String SwigDelegateExHostAppServices_25()
delegate IntPtr SwigDelegateExHostAppServices_67()
delegate String SwigDelegateExHostAppServices_42()
void setPrefix(String prefix)
delegate IntPtr SwigDelegateExHostAppServices_39(IntPtr pViewObj, IntPtr pDb)
delegate String SwigDelegateExHostAppServices_35(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt)
override OdHatchPatternManager patternManager()
delegate void SwigDelegateExHostAppServices_19(string warnVisGroup, int warningOb)
delegate void SwigDelegateExHostAppServices_2(IntPtr pSource)
ExHostAppServices(IntPtr cPtr, bool cMemoryOwn)
delegate IntPtr SwigDelegateExHostAppServices_46()
void disableOutput(bool disable)
delegate int SwigDelegateExHostAppServices_11()
delegate String SwigDelegateExHostAppServices_34(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename)
virtual void setLimit(int max)
delegate IntPtr SwigDelegateExHostAppServices_69()
delegate IntPtr SwigDelegateExHostAppServices_49(IntPtr pStreamBuf, bool allowCPConversion)
delegate UInt32 SwigDelegateExHostAppServices_70()
delegate String SwigDelegateExHostAppServices_29(IntPtr pFont, char unicodeChar, IntPtr pDb)
delegate IntPtr SwigDelegateExHostAppServices_64()
delegate void SwigDelegateExHostAppServices_23(global::System.IntPtr pAuditInfo, [MarshalAs(UnmanagedType.LPWStr)]String strLine, int printDest)
delegate int SwigDelegateExHostAppServices_45([MarshalAs(UnmanagedType.LPWStr)]String varName, [MarshalAs(UnmanagedType.LPWStr)]String newValue)
delegate IntPtr SwigDelegateExHostAppServices_47(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad, [MarshalAs(UnmanagedType.LPWStr)]String password)
delegate IntPtr SwigDelegateExHostAppServices_55([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode)
delegate void SwigDelegateExHostAppServices_78(int max)
delegate IntPtr SwigDelegateExHostAppServices_22()
delegate IntPtr SwigDelegateExHostAppServices_52(IntPtr pStreamBuf, global::System.IntPtr pAuditInfo)
delegate bool SwigDelegateExHostAppServices_66([MarshalAs(UnmanagedType.LPWStr)]String dwgName, bool isXref, IntPtr password)
delegate IntPtr SwigDelegateExHostAppServices_54([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion, bool partialLoad, int shareMode, [MarshalAs(UnmanagedType.LPWStr)]String password)
delegate String SwigDelegateExHostAppServices_9()
delegate String SwigDelegateExHostAppServices_33(int flags, [MarshalAs(UnmanagedType.LPWStr)]String dialogCaption, [MarshalAs(UnmanagedType.LPWStr)]String defExt, [MarshalAs(UnmanagedType.LPWStr)]String defFilename, [MarshalAs(UnmanagedType.LPWStr)]String filter)
delegate IntPtr SwigDelegateExHostAppServices_41()
delegate void SwigDelegateExHostAppServices_31(global::System.IntPtr res, [MarshalAs(UnmanagedType.LPWStr)]String sPath, [MarshalAs(UnmanagedType.LPWStr)]String sFilter)
delegate bool SwigDelegateExHostAppServices_30(global::System.IntPtr aDirs)
override void releaseProgressMeter(OdDbHostAppProgressMeter pProgressMeter)
override OdDbDatabase readFile(String filename, bool allowCPConversion, bool partialLoad, FileShareMode shareMode, String password)
delegate void SwigDelegateExHostAppServices_61(global::System.IntPtr err)
delegate IntPtr SwigDelegateExHostAppServices_21()
delegate void SwigDelegateExHostAppServices_59(int warningOb, global::System.IntPtr objectId)
delegate IntPtr SwigDelegateExHostAppServices_58([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate IntPtr SwigDelegateExHostAppServices_48(IntPtr pStreamBuf, bool allowCPConversion, bool partialLoad)
static HandleRef getCPtr(ExHostAppServices obj)
delegate int SwigDelegateExHostAppServices_13()
delegate String SwigDelegateExHostAppServices_27([MarshalAs(UnmanagedType.LPWStr)]String fontName, int fontType)
delegate IntPtr SwigDelegateExHostAppServices_57([MarshalAs(UnmanagedType.LPWStr)]String filename, bool allowCPConversion)
delegate void SwigDelegateExHostAppServices_71(uint nWidth, uint nHeight)
override void Dispose(bool disposing)
static string getRealClassName(IntPtr ptr)
override String fileDialog(int flags, String dialogCaption, String defExt, String defFilename, String filter)
virtual OdDbLayoutManager layoutManager()
override OdRxObject queryX(OdRxClass protocolClass)
override String getSubstituteFont(String fontName, OdFontType fontType)
override String getErrorDescription(uint errorCode)
virtual OdDbDatabase recoverFile(OdStreamBuf pStreamBuf, OdDbAuditInfo pAuditInfo, String password)
virtual void warning1(OdResult warningOb, OdDbObjectId objectId)
virtual void warning(string warnVisGroup, OdResult warningOb, OdDbObjectId objectId)
virtual OdStreamBuf getHistoryFile(OdDbDatabase arg0)
virtual void warning3(string warnVisGroup, OdError err)
virtual String fixName(OdDbSymbolTableRecord pRecord)
virtual OdPwdCache getPasswordCache()
virtual void getThumbSize(out uint nWidth, out uint nHeight)
override OdDbUndoController newUndoController()
override bool getSystemFontFolders(OdStringArray aDirs)
virtual OdDbPageController newPageController()
override void collectFilePathsInDirectory(OdStringArray res, String sPath, String sFilter)
virtual bool getPassword(String dwgName, bool isXref, ref string password)
virtual void warning2(OdError err)
override String getPreferableFont(String fontName, OdFontType fontType)
override String getSubstituteFontByChar(OdFont pFont, char unicodeChar, OdRxObject pDb)
virtual OdDbPlotSettingsValidator plotSettingsValidator()
override OdGsDevice gsBitmapDevice()
override String findFile(String filename, OdRxObject pDb, OdDbBaseHostAppServices.FindFileHint hint)
override void auditPrintReport(OdAuditInfo pAuditInfo, String strLine, int printDest)
static global::System.Exception Retrieve()
static void ExHostAppServices_stop(HandleRef jarg1)
static void ExHostAppServices_setPrefix(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void ExHostAppServices_startSwigExplicitExHostAppServices__SWIG_1(HandleRef jarg1)
static void ExHostAppServices_releaseProgressMeter(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ExHostAppServices_disableOutput(HandleRef jarg1, bool jarg2)
static void ExHostAppServices_startSwigExplicitExHostAppServices__SWIG_0(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr ExHostAppServices_patternManagerSwigExplicitExHostAppServices(HandleRef jarg1)
static void ExHostAppServices_setLimitSwigExplicitExHostAppServices(HandleRef jarg1, int jarg2)
static void delete_ExHostAppServices(HandleRef jarg1)
static string ExHostAppServices_getRealClassName(IntPtr jarg1)
static IntPtr ExHostAppServices_readFile(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, bool jarg3, bool jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]String jarg6)
static void ExHostAppServices_stopSwigExplicitExHostAppServices(HandleRef jarg1)
static IntPtr ExHostAppServices_readFileSwigExplicitExHostAppServices(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, bool jarg3, bool jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]String jarg6)
static void ExHostAppServices_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ExHostAppServices.SwigDelegateExHostAppServices_0 delegate0, ExHostAppServices.SwigDelegateExHostAppServices_1 delegate1, ExHostAppServices.SwigDelegateExHostAppServices_2 delegate2, ExHostAppServices.SwigDelegateExHostAppServices_3 delegate3, ExHostAppServices.SwigDelegateExHostAppServices_4 delegate4, ExHostAppServices.SwigDelegateExHostAppServices_5 delegate5, ExHostAppServices.SwigDelegateExHostAppServices_6 delegate6, ExHostAppServices.SwigDelegateExHostAppServices_7 delegate7, ExHostAppServices.SwigDelegateExHostAppServices_8 delegate8, ExHostAppServices.SwigDelegateExHostAppServices_9 delegate9, ExHostAppServices.SwigDelegateExHostAppServices_10 delegate10, ExHostAppServices.SwigDelegateExHostAppServices_11 delegate11, ExHostAppServices.SwigDelegateExHostAppServices_12 delegate12, ExHostAppServices.SwigDelegateExHostAppServices_13 delegate13, ExHostAppServices.SwigDelegateExHostAppServices_14 delegate14, ExHostAppServices.SwigDelegateExHostAppServices_15 delegate15, ExHostAppServices.SwigDelegateExHostAppServices_16 delegate16, ExHostAppServices.SwigDelegateExHostAppServices_17 delegate17, ExHostAppServices.SwigDelegateExHostAppServices_18 delegate18, ExHostAppServices.SwigDelegateExHostAppServices_19 delegate19, ExHostAppServices.SwigDelegateExHostAppServices_20 delegate20, ExHostAppServices.SwigDelegateExHostAppServices_21 delegate21, ExHostAppServices.SwigDelegateExHostAppServices_22 delegate22, ExHostAppServices.SwigDelegateExHostAppServices_23 delegate23, ExHostAppServices.SwigDelegateExHostAppServices_24 delegate24, ExHostAppServices.SwigDelegateExHostAppServices_25 delegate25, ExHostAppServices.SwigDelegateExHostAppServices_26 delegate26, ExHostAppServices.SwigDelegateExHostAppServices_27 delegate27, ExHostAppServices.SwigDelegateExHostAppServices_28 delegate28, ExHostAppServices.SwigDelegateExHostAppServices_29 delegate29, ExHostAppServices.SwigDelegateExHostAppServices_30 delegate30, ExHostAppServices.SwigDelegateExHostAppServices_31 delegate31, ExHostAppServices.SwigDelegateExHostAppServices_32 delegate32, ExHostAppServices.SwigDelegateExHostAppServices_33 delegate33, ExHostAppServices.SwigDelegateExHostAppServices_34 delegate34, ExHostAppServices.SwigDelegateExHostAppServices_35 delegate35, ExHostAppServices.SwigDelegateExHostAppServices_36 delegate36, ExHostAppServices.SwigDelegateExHostAppServices_37 delegate37, ExHostAppServices.SwigDelegateExHostAppServices_38 delegate38, ExHostAppServices.SwigDelegateExHostAppServices_39 delegate39, ExHostAppServices.SwigDelegateExHostAppServices_40 delegate40, ExHostAppServices.SwigDelegateExHostAppServices_41 delegate41, ExHostAppServices.SwigDelegateExHostAppServices_42 delegate42, ExHostAppServices.SwigDelegateExHostAppServices_43 delegate43, ExHostAppServices.SwigDelegateExHostAppServices_44 delegate44, ExHostAppServices.SwigDelegateExHostAppServices_45 delegate45, ExHostAppServices.SwigDelegateExHostAppServices_46 delegate46, ExHostAppServices.SwigDelegateExHostAppServices_47 delegate47, ExHostAppServices.SwigDelegateExHostAppServices_48 delegate48, ExHostAppServices.SwigDelegateExHostAppServices_49 delegate49, ExHostAppServices.SwigDelegateExHostAppServices_50 delegate50, ExHostAppServices.SwigDelegateExHostAppServices_51 delegate51, ExHostAppServices.SwigDelegateExHostAppServices_52 delegate52, ExHostAppServices.SwigDelegateExHostAppServices_53 delegate53, ExHostAppServices.SwigDelegateExHostAppServices_54 delegate54, ExHostAppServices.SwigDelegateExHostAppServices_55 delegate55, ExHostAppServices.SwigDelegateExHostAppServices_56 delegate56, ExHostAppServices.SwigDelegateExHostAppServices_57 delegate57, ExHostAppServices.SwigDelegateExHostAppServices_58 delegate58, ExHostAppServices.SwigDelegateExHostAppServices_59 delegate59, ExHostAppServices.SwigDelegateExHostAppServices_60 delegate60, ExHostAppServices.SwigDelegateExHostAppServices_61 delegate61, ExHostAppServices.SwigDelegateExHostAppServices_62 delegate62, ExHostAppServices.SwigDelegateExHostAppServices_63 delegate63, ExHostAppServices.SwigDelegateExHostAppServices_64 delegate64, ExHostAppServices.SwigDelegateExHostAppServices_65 delegate65, ExHostAppServices.SwigDelegateExHostAppServices_66 delegate66, ExHostAppServices.SwigDelegateExHostAppServices_67 delegate67, ExHostAppServices.SwigDelegateExHostAppServices_68 delegate68, ExHostAppServices.SwigDelegateExHostAppServices_69 delegate69, ExHostAppServices.SwigDelegateExHostAppServices_70 delegate70, ExHostAppServices.SwigDelegateExHostAppServices_71 delegate71, ExHostAppServices.SwigDelegateExHostAppServices_72 delegate72, ExHostAppServices.SwigDelegateExHostAppServices_73 delegate73, ExHostAppServices.SwigDelegateExHostAppServices_74 delegate74, ExHostAppServices.SwigDelegateExHostAppServices_75 delegate75, ExHostAppServices.SwigDelegateExHostAppServices_76 delegate76, ExHostAppServices.SwigDelegateExHostAppServices_77 delegate77, ExHostAppServices.SwigDelegateExHostAppServices_78 delegate78)
static void ExHostAppServices_start__SWIG_0(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void ExHostAppServices_setLimit(HandleRef jarg1, int jarg2)
static void ExHostAppServices_meterProgressSwigExplicitExHostAppServices(HandleRef jarg1)
static void ExHostAppServices_meterProgress(HandleRef jarg1)
static void ExHostAppServices_releaseProgressMeterSwigExplicitExHostAppServices(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr ExHostAppServices_patternManager(HandleRef jarg1)
static void ExHostAppServices_start__SWIG_1(HandleRef jarg1)
static global::System.IntPtr ExHostAppServices_newProgressMeter(HandleRef jarg1)
static global::System.IntPtr ExHostAppServices_newProgressMeterSwigExplicitExHostAppServices(HandleRef jarg1)