Extended .NET SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
OdDbDxfFiler.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
17public class OdDbDxfFiler : OdDbFiler {
18 private Object locker = new Object();
19 private HandleRef swigCPtr;
20 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
21 public OdDbDxfFiler(IntPtr cPtr, bool cMemoryOwn) : base(TD_DbPINVOKE.OdDbDxfFiler_SWIGUpcast(cPtr), cMemoryOwn) {
22 swigCPtr = new HandleRef(this, cPtr);
23 }
24
25 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
26 public static HandleRef getCPtr(OdDbDxfFiler 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
43 public OdDbDxfFiler()
44 : this(TD_DbPINVOKE.new_OdDbDxfFiler(), MemoryManager.GetMemoryManager().GetCurrentTransaction() == null)
45 {
46 MemoryTransaction mTr = MemoryManager.GetMemoryManager().GetCurrentTransaction(); // MemoryTransaction #1
47 if (null != mTr)
48 {
49 mTr.AddObject(new OdDbDxfFiler(swigCPtr.Handle, true));
50 }
52 SwigDirectorConnect();
53 DelegateHolder.OnHoldSwigDirectorDelegates(this);
54 }
55
56 public static OdDbDxfFiler cast(OdRxObject pObj) {// OdSmartPtr<OdDbDxfFiler>
57 MemoryManager mMan = MemoryManager.GetMemoryManager();
58 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
60
61 OdDbDxfFiler ret = null;
62 if (null != mTrans)
63 {
64 mTrans.AddObject((OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, true));
65 ret = (OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, false);
66 }
67 else
68 {
69 ret = (OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, true);
70 }
71
73 return ret;
74}
75
76 public new static OdRxClass desc() {
77 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),TD_DbPINVOKE.OdDbDxfFiler_desc(),false); /*createInt 3_2*/
78
80 return ret;
81}
82
83 public override OdRxClass isA() {
84 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),(SwigDerivedClassHasMethod("isA", swigMethodTypes1) ? TD_DbPINVOKE.OdDbDxfFiler_isASwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_isA(swigCPtr)),false); /*createInt 3_2*/
85
87 return ret;
88}
89
90 public override OdRxObject queryX(OdRxClass protocolClass) {
91 OdRxObject ret = (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),(SwigDerivedClassHasMethod("queryX", swigMethodTypes0) ? TD_DbPINVOKE.OdDbDxfFiler_queryXSwigExplicitOdDbDxfFiler(swigCPtr, OdRxClass.getCPtr(protocolClass)) : TD_DbPINVOKE.OdDbDxfFiler_queryX(swigCPtr, OdRxClass.getCPtr(protocolClass))),false); /*createInt 3_2*/
92
94 return ret;
95}
96
97 public new static OdDbDxfFiler createObject() {// OdSmartPtr<OdDbDxfFiler>
98 MemoryManager mMan = MemoryManager.GetMemoryManager();
99 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
101
102 OdDbDxfFiler ret = null;
103 if (null != mTrans)
104 {
105 mTrans.AddObject((OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, true));
106 ret = (OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, false);
107 }
108 else
109 {
110 ret = (OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),ptr, true);
111 }
112
114 return ret;
115}
116
117 public virtual void seek(Int64 offset, FilerSeekType seekType) {
118 if (SwigDerivedClassHasMethod("seek", swigMethodTypes11)) TD_DbPINVOKE.OdDbDxfFiler_seekSwigExplicitOdDbDxfFiler(swigCPtr, offset /*SIMPLETYPE*/, (int)seekType); else TD_DbPINVOKE.OdDbDxfFiler_seek(swigCPtr, offset /*SIMPLETYPE*/, (int)seekType);
120 }
121
122 public virtual UInt64 tell() {
123// test csout
124 /*SIMPLETYPE*/
125 UInt64 ret = (SwigDerivedClassHasMethod("tell", swigMethodTypes12) ? TD_DbPINVOKE.OdDbDxfFiler_tellSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_tell(swigCPtr));
127 return ret;
128 }
129
130 public virtual int precision() {
131 int ret = (SwigDerivedClassHasMethod("precision", swigMethodTypes13) ? TD_DbPINVOKE.OdDbDxfFiler_precisionSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_precision(swigCPtr));
133 return ret;
134 }
135
136 public virtual void setPrecision(int decimalDigits) {
137 if (SwigDerivedClassHasMethod("setPrecision", swigMethodTypes14)) TD_DbPINVOKE.OdDbDxfFiler_setPrecisionSwigExplicitOdDbDxfFiler(swigCPtr, decimalDigits); else TD_DbPINVOKE.OdDbDxfFiler_setPrecision(swigCPtr, decimalDigits);
139 }
140
141 public virtual void writeXDataStart() {
142 if (SwigDerivedClassHasMethod("writeXDataStart", swigMethodTypes15)) TD_DbPINVOKE.OdDbDxfFiler_writeXDataStartSwigExplicitOdDbDxfFiler(swigCPtr); else TD_DbPINVOKE.OdDbDxfFiler_writeXDataStart(swigCPtr);
144 }
145
146 public virtual bool includesDefaultValues() {
147 bool ret = (SwigDerivedClassHasMethod("includesDefaultValues", swigMethodTypes16) ? TD_DbPINVOKE.OdDbDxfFiler_includesDefaultValuesSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_includesDefaultValues(swigCPtr));
149 return ret;
150 }
151
152 public virtual bool atEOF() {
153 bool ret = (SwigDerivedClassHasMethod("atEOF", swigMethodTypes17) ? TD_DbPINVOKE.OdDbDxfFiler_atEOFSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_atEOF(swigCPtr));
155 return ret;
156 }
157
158 public virtual bool atEndOfObject() {
159 bool ret = (SwigDerivedClassHasMethod("atEndOfObject", swigMethodTypes18) ? TD_DbPINVOKE.OdDbDxfFiler_atEndOfObjectSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_atEndOfObject(swigCPtr));
161 return ret;
162 }
163
164 public virtual bool atExtendedData() {
165 bool ret = (SwigDerivedClassHasMethod("atExtendedData", swigMethodTypes19) ? TD_DbPINVOKE.OdDbDxfFiler_atExtendedDataSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_atExtendedData(swigCPtr));
167 return ret;
168 }
169
170 public virtual bool atSubclassData(String subClassName) {
171 bool ret = (SwigDerivedClassHasMethod("atSubclassData", swigMethodTypes20) ? TD_DbPINVOKE.OdDbDxfFiler_atSubclassDataSwigExplicitOdDbDxfFiler(swigCPtr, subClassName) : TD_DbPINVOKE.OdDbDxfFiler_atSubclassData(swigCPtr, subClassName));
173 return ret;
174 }
175
176 public virtual bool atEmbeddedObjectStart() {
177 bool ret = (SwigDerivedClassHasMethod("atEmbeddedObjectStart", swigMethodTypes21) ? TD_DbPINVOKE.OdDbDxfFiler_atEmbeddedObjectStartSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_atEmbeddedObjectStart(swigCPtr));
179 return ret;
180 }
181
182 public virtual int nextItem() {
183 int ret = (SwigDerivedClassHasMethod("nextItem", swigMethodTypes22) ? TD_DbPINVOKE.OdDbDxfFiler_nextItemSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_nextItem(swigCPtr));
185 return ret;
186 }
187
188 public virtual OdResBuf nextRb() {// OdResBufPtr
189 MemoryManager mMan = MemoryManager.GetMemoryManager();
190 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
191 IntPtr ptr = (SwigDerivedClassHasMethod("nextRb", swigMethodTypes23) ? TD_DbPINVOKE.OdDbDxfFiler_nextRbSwigExplicitOdDbDxfFiler(swigCPtr) : TD_DbPINVOKE.OdDbDxfFiler_nextRb(swigCPtr));
192
193 OdResBuf ret = null;
194 if (null != mTrans)
195 {
196 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
197 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
198 }
199 else
200 {
201 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
202 }
203
205 return ret;
206}
207
208 public virtual void writeRb(OdResBuf pRb) {
209 if (SwigDerivedClassHasMethod("writeRb", swigMethodTypes24)) TD_DbPINVOKE.OdDbDxfFiler_writeRbSwigExplicitOdDbDxfFiler(swigCPtr, OdResBuf.getCPtr(pRb)); else TD_DbPINVOKE.OdDbDxfFiler_writeRb(swigCPtr, OdResBuf.getCPtr(pRb));
211 }
212
213 public virtual void pushBackItem() {
214 if (SwigDerivedClassHasMethod("pushBackItem", swigMethodTypes25)) TD_DbPINVOKE.OdDbDxfFiler_pushBackItemSwigExplicitOdDbDxfFiler(swigCPtr); else TD_DbPINVOKE.OdDbDxfFiler_pushBackItem(swigCPtr);
216 }
217
223
224 public virtual void rdString(ref string value) {
225IntPtr tmp_value = Marshal.StringToCoTaskMemUni(value);
226 IntPtr saved_value = tmp_value;
227 try {
228 TD_DbPINVOKE.OdDbDxfFiler_rdString__SWIG_1(swigCPtr, ref tmp_value);
230 } finally {
231if (tmp_value != saved_value) value = Marshal.PtrToStringUni(tmp_value);
232 }
233 }
234
235 public virtual bool rdBool() {
236 bool ret = TD_DbPINVOKE.OdDbDxfFiler_rdBool(swigCPtr);
238 return ret;
239 }
240
241 public virtual sbyte rdInt8() {
242// test csout
243 /*SIMPLETYPE*/
244 sbyte ret = TD_DbPINVOKE.OdDbDxfFiler_rdInt8(swigCPtr);
246 return ret;
247 }
248
249 public virtual Int16 rdInt16() {
250// test csout
251 /*SIMPLETYPE*/
252 Int16 ret = TD_DbPINVOKE.OdDbDxfFiler_rdInt16(swigCPtr);
254 return ret;
255 }
256
257 public virtual Int32 rdInt32() {
258// test csout
259 /*SIMPLETYPE*/
260 Int32 ret = TD_DbPINVOKE.OdDbDxfFiler_rdInt32(swigCPtr);
262 return ret;
263 }
264
265 public virtual Int64 rdInt64() {
266// test csout
267 /*SIMPLETYPE*/
268 Int64 ret = TD_DbPINVOKE.OdDbDxfFiler_rdInt64(swigCPtr);
270 return ret;
271 }
272
273 public virtual byte rdUInt8() {
274// test csout
275 /*SIMPLETYPE*/
276 byte ret = TD_DbPINVOKE.OdDbDxfFiler_rdUInt8(swigCPtr);
278 return ret;
279 }
280
281 public virtual UInt16 rdUInt16() {
282// test csout
283 /*SIMPLETYPE*/
284 UInt16 ret = TD_DbPINVOKE.OdDbDxfFiler_rdUInt16(swigCPtr);
286 return ret;
287 }
288
289 public virtual UInt32 rdUInt32() {
290// test csout
291 /*SIMPLETYPE*/
292 UInt32 ret = TD_DbPINVOKE.OdDbDxfFiler_rdUInt32(swigCPtr);
294 return ret;
295 }
296
297 public virtual UInt64 rdUInt64() {
298// test csout
299 /*SIMPLETYPE*/
300 UInt64 ret = TD_DbPINVOKE.OdDbDxfFiler_rdUInt64(swigCPtr);
302 return ret;
303 }
304
305 public virtual OdDbHandle rdHandle() {
306 OdDbHandle ret = new OdDbHandle(TD_DbPINVOKE.OdDbDxfFiler_rdHandle(swigCPtr), true);
308 return ret;
309 }
310
316
317 public virtual double rdAngle() {
318 double ret = TD_DbPINVOKE.OdDbDxfFiler_rdAngle(swigCPtr);
320 return ret;
321 }
322
323 public virtual double rdDouble() {
324 double ret = TD_DbPINVOKE.OdDbDxfFiler_rdDouble(swigCPtr);
326 return ret;
327 }
328
333
338
343
348
353
358
359 public virtual void copyItem(OdDbDxfFiler pSource) {
360 if (SwigDerivedClassHasMethod("copyItem", swigMethodTypes46)) TD_DbPINVOKE.OdDbDxfFiler_copyItemSwigExplicitOdDbDxfFiler(swigCPtr, OdDbDxfFiler.getCPtr(pSource)); else TD_DbPINVOKE.OdDbDxfFiler_copyItem(swigCPtr, OdDbDxfFiler.getCPtr(pSource));
362 }
363
364 public virtual void wrName(int groupCode, String value) {
365 TD_DbPINVOKE.OdDbDxfFiler_wrName(swigCPtr, groupCode, value);
367 }
368
369 public virtual void wrString(int groupCode, String value) {
370 TD_DbPINVOKE.OdDbDxfFiler_wrString(swigCPtr, groupCode, value);
372 }
373
378
383
388
389 public virtual void wrBool(int groupCode, bool value) {
390 TD_DbPINVOKE.OdDbDxfFiler_wrBool(swigCPtr, groupCode, value);
392 }
393
394 public void wrBoolOpt(int groupCode, bool value, bool defaultValue) {
395 TD_DbPINVOKE.OdDbDxfFiler_wrBoolOpt(swigCPtr, groupCode, value, defaultValue);
397 }
398
399 public virtual void wrInt8(int groupCode, sbyte value) {
400 TD_DbPINVOKE.OdDbDxfFiler_wrInt8(swigCPtr, groupCode, value /*SIMPLETYPE*/);
402 }
403
404 public void wrInt8Opt(int groupCode, sbyte value, sbyte defaultValue) {
405 TD_DbPINVOKE.OdDbDxfFiler_wrInt8Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
407 }
408
409 public virtual void wrUInt8(int groupCode, byte value) {
410 TD_DbPINVOKE.OdDbDxfFiler_wrUInt8(swigCPtr, groupCode, value /*SIMPLETYPE*/);
412 }
413
414 public void wrUInt8Opt(int groupCode, byte value, byte defaultValue) {
415 TD_DbPINVOKE.OdDbDxfFiler_wrUInt8Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
417 }
418
419 public virtual void wrInt16(int groupCode, Int16 value) {
420 TD_DbPINVOKE.OdDbDxfFiler_wrInt16(swigCPtr, groupCode, value /*SIMPLETYPE*/);
422 }
423
424 public void wrInt16Opt(int groupCode, Int16 value, Int16 defaultValue) {
425 TD_DbPINVOKE.OdDbDxfFiler_wrInt16Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
427 }
428
429 public virtual void wrUInt16(int groupCode, UInt16 value) {
430 TD_DbPINVOKE.OdDbDxfFiler_wrUInt16(swigCPtr, groupCode, value /*SIMPLETYPE*/);
432 }
433
434 public void wrUInt16Opt(int groupCode, UInt16 value, UInt16 defaultValue) {
435 TD_DbPINVOKE.OdDbDxfFiler_wrUInt16Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
437 }
438
439 public virtual void wrInt32(int groupCode, Int32 value) {
440 TD_DbPINVOKE.OdDbDxfFiler_wrInt32(swigCPtr, groupCode, value /*SIMPLETYPE*/);
442 }
443
444 public void wrInt32Opt(int groupCode, Int32 value, Int32 defaultValue) {
445 TD_DbPINVOKE.OdDbDxfFiler_wrInt32Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
447 }
448
449 public virtual void wrUInt32(int groupCode, UInt32 value) {
450 TD_DbPINVOKE.OdDbDxfFiler_wrUInt32(swigCPtr, groupCode, value /*SIMPLETYPE*/);
452 }
453
454 public void wrUInt32Opt(int groupCode, UInt32 value, UInt32 defaultValue) {
455 TD_DbPINVOKE.OdDbDxfFiler_wrUInt32Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
457 }
458
459 public virtual void wrInt64(int groupCode, Int64 value) {
460 TD_DbPINVOKE.OdDbDxfFiler_wrInt64(swigCPtr, groupCode, value /*SIMPLETYPE*/);
462 }
463
464 public void wrInt64Opt(int groupCode, Int64 value, Int64 defaultValue) {
465 TD_DbPINVOKE.OdDbDxfFiler_wrInt64Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
467 }
468
469 public virtual void wrUInt64(int groupCode, UInt64 value) {
470 TD_DbPINVOKE.OdDbDxfFiler_wrUInt64(swigCPtr, groupCode, value /*SIMPLETYPE*/);
472 }
473
474 public void wrUInt64Opt(int groupCode, UInt64 value, UInt64 defaultValue) {
475 TD_DbPINVOKE.OdDbDxfFiler_wrUInt64Opt(swigCPtr, groupCode, value /*SIMPLETYPE*/, defaultValue /*SIMPLETYPE*/);
477 }
478
483
488
493
494 public virtual void wrAngle(int groupCode, double value, int precision) {
497 }
498
499 public virtual void wrAngle(int groupCode, double value) {
500 TD_DbPINVOKE.OdDbDxfFiler_wrAngle__SWIG_1(swigCPtr, groupCode, value);
502 }
503
504 public void wrAngleOpt(int groupCode, double value, double defaultValue, int precision) {
505 TD_DbPINVOKE.OdDbDxfFiler_wrAngleOpt__SWIG_0(swigCPtr, groupCode, value, defaultValue, precision);
507 }
508
509 public void wrAngleOpt(int groupCode, double value, double defaultValue) {
510 TD_DbPINVOKE.OdDbDxfFiler_wrAngleOpt__SWIG_1(swigCPtr, groupCode, value, defaultValue);
512 }
513
514 public void wrAngleOpt(int groupCode, double value) {
517 }
518
519 public virtual void wrDouble(int groupCode, double value, int precision) {
522 }
523
524 public virtual void wrDouble(int groupCode, double value) {
527 }
528
529 public void wrDoubleOpt(int groupCode, double value, double defaultValue, int precision) {
530 TD_DbPINVOKE.OdDbDxfFiler_wrDoubleOpt__SWIG_0(swigCPtr, groupCode, value, defaultValue, precision);
532 }
533
534 public void wrDoubleOpt(int groupCode, double value, double defaultValue) {
535 TD_DbPINVOKE.OdDbDxfFiler_wrDoubleOpt__SWIG_1(swigCPtr, groupCode, value, defaultValue);
537 }
538
539 public void wrDoubleOpt(int groupCode, double value) {
542 }
543
548
553
558
563
568
573
578
583
588
593
598
599 public void wrVector2dOpt(int groupCode, OdGeVector2d value, OdGeVector2d defaultValue) {
600 TD_DbPINVOKE.OdDbDxfFiler_wrVector2dOpt__SWIG_1(swigCPtr, groupCode, OdGeVector2d.getCPtr(value).Handle, OdGeVector2d.getCPtr(defaultValue).Handle);
602 }
603
608
613
618
623
628
633
634 public virtual void wrBinaryChunk(int groupCode, byte[] /*SIMPLEFIXED_ARRAY*/ buffer) {
635IntPtr p_buffer=Teigha.Core.Helpers.MarshalbyteFixedArray(buffer);
636 try {
637 TD_DbPINVOKE.OdDbDxfFiler_wrBinaryChunk__SWIG_0(swigCPtr, groupCode, p_buffer);
639 } finally {
640Marshal.FreeCoTaskMem(p_buffer);
641 }
642 }
643
648
649 protected static string getRealClassName(IntPtr ptr) {
650 string ret = TD_DbPINVOKE.OdDbDxfFiler_getRealClassName(ptr /*SIMPLETYPE*/);
652 return ret;
653 }
654
659 public virtual Teigha.TD.OdDbFiler.FilerType vb_filerType() { return this.filerType(); }
660
665 public virtual Teigha.Core.DwgVersion vb_dwgVersion(out Teigha.Core.MaintReleaseVer pMaintReleaseVer) { return this.dwgVersion(out pMaintReleaseVer); }
666
671 public virtual Teigha.Core.DwgVersion vb_dwgVersion() { return this.dwgVersion(); }
672
673 private void SwigDirectorConnect() {
674 if (SwigDerivedClassHasMethod("queryX", swigMethodTypes0))
675 swigDelegate0 = new SwigDelegateOdDbDxfFiler_0(SwigDirectorMethodqueryX);
676 if (SwigDerivedClassHasMethod("isA", swigMethodTypes1))
677 swigDelegate1 = new SwigDelegateOdDbDxfFiler_1(SwigDirectorMethodisA);
678 if (SwigDerivedClassHasMethod("copyFrom", swigMethodTypes2))
679 swigDelegate2 = new SwigDelegateOdDbDxfFiler_2(SwigDirectorMethodcopyFrom);
680 if (SwigDerivedClassHasMethod("filerStatus", swigMethodTypes3))
681 swigDelegate3 = new SwigDelegateOdDbDxfFiler_3(SwigDirectorMethodfilerStatus);
682 if (SwigDerivedClassHasMethod("resetFilerStatus", swigMethodTypes4))
683 swigDelegate4 = new SwigDelegateOdDbDxfFiler_4(SwigDirectorMethodresetFilerStatus);
684 if (SwigDerivedClassHasMethod("filerType", swigMethodTypes5))
685 swigDelegate5 = new SwigDelegateOdDbDxfFiler_5(SwigDirectorMethodfilerType);
686 if (SwigDerivedClassHasMethod("database", swigMethodTypes6))
687 swigDelegate6 = new SwigDelegateOdDbDxfFiler_6(SwigDirectorMethoddatabase);
688 if (SwigDerivedClassHasMethod("dwgVersion", swigMethodTypes7))
689 swigDelegate7 = new SwigDelegateOdDbDxfFiler_7(SwigDirectorMethoddwgVersion__SWIG_0);
690 if (SwigDerivedClassHasMethod("dwgVersion", swigMethodTypes8))
691 swigDelegate8 = new SwigDelegateOdDbDxfFiler_8(SwigDirectorMethoddwgVersion__SWIG_1);
692 if (SwigDerivedClassHasMethod("setController", swigMethodTypes9))
693 swigDelegate9 = new SwigDelegateOdDbDxfFiler_9(SwigDirectorMethodsetController);
694 if (SwigDerivedClassHasMethod("controller", swigMethodTypes10))
695 swigDelegate10 = new SwigDelegateOdDbDxfFiler_10(SwigDirectorMethodcontroller);
696 if (SwigDerivedClassHasMethod("seek", swigMethodTypes11))
697 swigDelegate11 = new SwigDelegateOdDbDxfFiler_11(SwigDirectorMethodseek);
698 if (SwigDerivedClassHasMethod("tell", swigMethodTypes12))
699 swigDelegate12 = new SwigDelegateOdDbDxfFiler_12(SwigDirectorMethodtell);
700 if (SwigDerivedClassHasMethod("precision", swigMethodTypes13))
701 swigDelegate13 = new SwigDelegateOdDbDxfFiler_13(SwigDirectorMethodprecision);
702 if (SwigDerivedClassHasMethod("setPrecision", swigMethodTypes14))
703 swigDelegate14 = new SwigDelegateOdDbDxfFiler_14(SwigDirectorMethodsetPrecision);
704 if (SwigDerivedClassHasMethod("writeXDataStart", swigMethodTypes15))
705 swigDelegate15 = new SwigDelegateOdDbDxfFiler_15(SwigDirectorMethodwriteXDataStart);
706 if (SwigDerivedClassHasMethod("includesDefaultValues", swigMethodTypes16))
707 swigDelegate16 = new SwigDelegateOdDbDxfFiler_16(SwigDirectorMethodincludesDefaultValues);
708 if (SwigDerivedClassHasMethod("atEOF", swigMethodTypes17))
709 swigDelegate17 = new SwigDelegateOdDbDxfFiler_17(SwigDirectorMethodatEOF);
710 if (SwigDerivedClassHasMethod("atEndOfObject", swigMethodTypes18))
711 swigDelegate18 = new SwigDelegateOdDbDxfFiler_18(SwigDirectorMethodatEndOfObject);
712 if (SwigDerivedClassHasMethod("atExtendedData", swigMethodTypes19))
713 swigDelegate19 = new SwigDelegateOdDbDxfFiler_19(SwigDirectorMethodatExtendedData);
714 if (SwigDerivedClassHasMethod("atSubclassData", swigMethodTypes20))
715 swigDelegate20 = new SwigDelegateOdDbDxfFiler_20(SwigDirectorMethodatSubclassData);
716 if (SwigDerivedClassHasMethod("atEmbeddedObjectStart", swigMethodTypes21))
717 swigDelegate21 = new SwigDelegateOdDbDxfFiler_21(SwigDirectorMethodatEmbeddedObjectStart);
718 if (SwigDerivedClassHasMethod("nextItem", swigMethodTypes22))
719 swigDelegate22 = new SwigDelegateOdDbDxfFiler_22(SwigDirectorMethodnextItem);
720 if (SwigDerivedClassHasMethod("nextRb", swigMethodTypes23))
721 swigDelegate23 = new SwigDelegateOdDbDxfFiler_23(SwigDirectorMethodnextRb);
722 if (SwigDerivedClassHasMethod("writeRb", swigMethodTypes24))
723 swigDelegate24 = new SwigDelegateOdDbDxfFiler_24(SwigDirectorMethodwriteRb);
724 if (SwigDerivedClassHasMethod("pushBackItem", swigMethodTypes25))
725 swigDelegate25 = new SwigDelegateOdDbDxfFiler_25(SwigDirectorMethodpushBackItem);
726 if (SwigDerivedClassHasMethod("rdString", swigMethodTypes26))
727 swigDelegate26 = new SwigDelegateOdDbDxfFiler_26(SwigDirectorMethodrdString__SWIG_1);
728 if (SwigDerivedClassHasMethod("rdBool", swigMethodTypes27))
729 swigDelegate27 = new SwigDelegateOdDbDxfFiler_27(SwigDirectorMethodrdBool);
730 if (SwigDerivedClassHasMethod("rdInt8", swigMethodTypes28))
731 swigDelegate28 = new SwigDelegateOdDbDxfFiler_28(SwigDirectorMethodrdInt8);
732 if (SwigDerivedClassHasMethod("rdInt16", swigMethodTypes29))
733 swigDelegate29 = new SwigDelegateOdDbDxfFiler_29(SwigDirectorMethodrdInt16);
734 if (SwigDerivedClassHasMethod("rdInt32", swigMethodTypes30))
735 swigDelegate30 = new SwigDelegateOdDbDxfFiler_30(SwigDirectorMethodrdInt32);
736 if (SwigDerivedClassHasMethod("rdInt64", swigMethodTypes31))
737 swigDelegate31 = new SwigDelegateOdDbDxfFiler_31(SwigDirectorMethodrdInt64);
738 if (SwigDerivedClassHasMethod("rdUInt8", swigMethodTypes32))
739 swigDelegate32 = new SwigDelegateOdDbDxfFiler_32(SwigDirectorMethodrdUInt8);
740 if (SwigDerivedClassHasMethod("rdUInt16", swigMethodTypes33))
741 swigDelegate33 = new SwigDelegateOdDbDxfFiler_33(SwigDirectorMethodrdUInt16);
742 if (SwigDerivedClassHasMethod("rdUInt32", swigMethodTypes34))
743 swigDelegate34 = new SwigDelegateOdDbDxfFiler_34(SwigDirectorMethodrdUInt32);
744 if (SwigDerivedClassHasMethod("rdUInt64", swigMethodTypes35))
745 swigDelegate35 = new SwigDelegateOdDbDxfFiler_35(SwigDirectorMethodrdUInt64);
746 if (SwigDerivedClassHasMethod("rdHandle", swigMethodTypes36))
747 swigDelegate36 = new SwigDelegateOdDbDxfFiler_36(SwigDirectorMethodrdHandle);
748 if (SwigDerivedClassHasMethod("rdObjectId", swigMethodTypes37))
749 swigDelegate37 = new SwigDelegateOdDbDxfFiler_37(SwigDirectorMethodrdObjectId);
750 if (SwigDerivedClassHasMethod("rdAngle", swigMethodTypes38))
751 swigDelegate38 = new SwigDelegateOdDbDxfFiler_38(SwigDirectorMethodrdAngle);
752 if (SwigDerivedClassHasMethod("rdDouble", swigMethodTypes39))
753 swigDelegate39 = new SwigDelegateOdDbDxfFiler_39(SwigDirectorMethodrdDouble);
754 if (SwigDerivedClassHasMethod("rdPoint2d", swigMethodTypes40))
755 swigDelegate40 = new SwigDelegateOdDbDxfFiler_40(SwigDirectorMethodrdPoint2d);
756 if (SwigDerivedClassHasMethod("rdPoint3d", swigMethodTypes41))
757 swigDelegate41 = new SwigDelegateOdDbDxfFiler_41(SwigDirectorMethodrdPoint3d);
758 if (SwigDerivedClassHasMethod("rdVector2d", swigMethodTypes42))
759 swigDelegate42 = new SwigDelegateOdDbDxfFiler_42(SwigDirectorMethodrdVector2d);
760 if (SwigDerivedClassHasMethod("rdVector3d", swigMethodTypes43))
761 swigDelegate43 = new SwigDelegateOdDbDxfFiler_43(SwigDirectorMethodrdVector3d);
762 if (SwigDerivedClassHasMethod("rdScale3d", swigMethodTypes44))
763 swigDelegate44 = new SwigDelegateOdDbDxfFiler_44(SwigDirectorMethodrdScale3d);
764 if (SwigDerivedClassHasMethod("rdBinaryChunk", swigMethodTypes45))
765 swigDelegate45 = new SwigDelegateOdDbDxfFiler_45(SwigDirectorMethodrdBinaryChunk);
766 if (SwigDerivedClassHasMethod("copyItem", swigMethodTypes46))
767 swigDelegate46 = new SwigDelegateOdDbDxfFiler_46(SwigDirectorMethodcopyItem);
768 if (SwigDerivedClassHasMethod("wrName", swigMethodTypes47))
769 swigDelegate47 = new SwigDelegateOdDbDxfFiler_47(SwigDirectorMethodwrName);
770 if (SwigDerivedClassHasMethod("wrString", swigMethodTypes48))
771 swigDelegate48 = new SwigDelegateOdDbDxfFiler_48(SwigDirectorMethodwrString);
772 if (SwigDerivedClassHasMethod("wrBool", swigMethodTypes49))
773 swigDelegate49 = new SwigDelegateOdDbDxfFiler_49(SwigDirectorMethodwrBool);
774 if (SwigDerivedClassHasMethod("wrInt8", swigMethodTypes50))
775 swigDelegate50 = new SwigDelegateOdDbDxfFiler_50(SwigDirectorMethodwrInt8);
776 if (SwigDerivedClassHasMethod("wrUInt8", swigMethodTypes51))
777 swigDelegate51 = new SwigDelegateOdDbDxfFiler_51(SwigDirectorMethodwrUInt8);
778 if (SwigDerivedClassHasMethod("wrInt16", swigMethodTypes52))
779 swigDelegate52 = new SwigDelegateOdDbDxfFiler_52(SwigDirectorMethodwrInt16);
780 if (SwigDerivedClassHasMethod("wrUInt16", swigMethodTypes53))
781 swigDelegate53 = new SwigDelegateOdDbDxfFiler_53(SwigDirectorMethodwrUInt16);
782 if (SwigDerivedClassHasMethod("wrInt32", swigMethodTypes54))
783 swigDelegate54 = new SwigDelegateOdDbDxfFiler_54(SwigDirectorMethodwrInt32);
784 if (SwigDerivedClassHasMethod("wrUInt32", swigMethodTypes55))
785 swigDelegate55 = new SwigDelegateOdDbDxfFiler_55(SwigDirectorMethodwrUInt32);
786 if (SwigDerivedClassHasMethod("wrInt64", swigMethodTypes56))
787 swigDelegate56 = new SwigDelegateOdDbDxfFiler_56(SwigDirectorMethodwrInt64);
788 if (SwigDerivedClassHasMethod("wrUInt64", swigMethodTypes57))
789 swigDelegate57 = new SwigDelegateOdDbDxfFiler_57(SwigDirectorMethodwrUInt64);
790 if (SwigDerivedClassHasMethod("wrHandle", swigMethodTypes58))
791 swigDelegate58 = new SwigDelegateOdDbDxfFiler_58(SwigDirectorMethodwrHandle);
792 if (SwigDerivedClassHasMethod("wrObjectId", swigMethodTypes59))
793 swigDelegate59 = new SwigDelegateOdDbDxfFiler_59(SwigDirectorMethodwrObjectId);
794 if (SwigDerivedClassHasMethod("wrAngle", swigMethodTypes60))
795 swigDelegate60 = new SwigDelegateOdDbDxfFiler_60(SwigDirectorMethodwrAngle__SWIG_0);
796 if (SwigDerivedClassHasMethod("wrAngle", swigMethodTypes61))
797 swigDelegate61 = new SwigDelegateOdDbDxfFiler_61(SwigDirectorMethodwrAngle__SWIG_1);
798 if (SwigDerivedClassHasMethod("wrDouble", swigMethodTypes62))
799 swigDelegate62 = new SwigDelegateOdDbDxfFiler_62(SwigDirectorMethodwrDouble__SWIG_0);
800 if (SwigDerivedClassHasMethod("wrDouble", swigMethodTypes63))
801 swigDelegate63 = new SwigDelegateOdDbDxfFiler_63(SwigDirectorMethodwrDouble__SWIG_1);
802 if (SwigDerivedClassHasMethod("wrPoint2d", swigMethodTypes64))
803 swigDelegate64 = new SwigDelegateOdDbDxfFiler_64(SwigDirectorMethodwrPoint2d__SWIG_0);
804 if (SwigDerivedClassHasMethod("wrPoint2d", swigMethodTypes65))
805 swigDelegate65 = new SwigDelegateOdDbDxfFiler_65(SwigDirectorMethodwrPoint2d__SWIG_1);
806 if (SwigDerivedClassHasMethod("wrPoint3d", swigMethodTypes66))
807 swigDelegate66 = new SwigDelegateOdDbDxfFiler_66(SwigDirectorMethodwrPoint3d__SWIG_0);
808 if (SwigDerivedClassHasMethod("wrPoint3d", swigMethodTypes67))
809 swigDelegate67 = new SwigDelegateOdDbDxfFiler_67(SwigDirectorMethodwrPoint3d__SWIG_1);
810 if (SwigDerivedClassHasMethod("wrVector2d", swigMethodTypes68))
811 swigDelegate68 = new SwigDelegateOdDbDxfFiler_68(SwigDirectorMethodwrVector2d__SWIG_0);
812 if (SwigDerivedClassHasMethod("wrVector2d", swigMethodTypes69))
813 swigDelegate69 = new SwigDelegateOdDbDxfFiler_69(SwigDirectorMethodwrVector2d__SWIG_1);
814 if (SwigDerivedClassHasMethod("wrVector3d", swigMethodTypes70))
815 swigDelegate70 = new SwigDelegateOdDbDxfFiler_70(SwigDirectorMethodwrVector3d__SWIG_0);
816 if (SwigDerivedClassHasMethod("wrVector3d", swigMethodTypes71))
817 swigDelegate71 = new SwigDelegateOdDbDxfFiler_71(SwigDirectorMethodwrVector3d__SWIG_1);
818 if (SwigDerivedClassHasMethod("wrScale3d", swigMethodTypes72))
819 swigDelegate72 = new SwigDelegateOdDbDxfFiler_72(SwigDirectorMethodwrScale3d__SWIG_0);
820 if (SwigDerivedClassHasMethod("wrScale3d", swigMethodTypes73))
821 swigDelegate73 = new SwigDelegateOdDbDxfFiler_73(SwigDirectorMethodwrScale3d__SWIG_1);
822 if (SwigDerivedClassHasMethod("wrBinaryChunk", swigMethodTypes74))
823 swigDelegate74 = new SwigDelegateOdDbDxfFiler_74(SwigDirectorMethodwrBinaryChunk__SWIG_0);
824 TD_DbPINVOKE.OdDbDxfFiler_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);
825 }
826
827 private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) {
828 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);
829 bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(OdDbDxfFiler));
830 return hasDerivedMethod;
831 }
832
833 private IntPtr SwigDirectorMethodqueryX(IntPtr protocolClass) {
834 return
835 // csdirectorout for OdRxObject*, OdRxObject&
837 (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),protocolClass,false) /*createInt 6_2*/ // csdirectorin for smart pointer
838)).Handle
839;
840 }
841
842 private IntPtr SwigDirectorMethodisA() {
843 return
844 // csdirectorout for OdRxClass*, OdRxClass&
845 OdRxClass.getCPtr(isA()).Handle
846;
847 }
848
849 private void SwigDirectorMethodcopyFrom(IntPtr pSource) {
850 copyFrom(
851 (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),pSource,false) /*createInt 6_2*/ // csdirectorin for smart pointer
852);
853 }
854
855 private int SwigDirectorMethodfilerStatus() {
856 return (int)filerStatus();
857 }
858
859 private void SwigDirectorMethodresetFilerStatus() {
861 }
862
863 private int SwigDirectorMethodfilerType() {
864 return (int)filerType();
865 }
866
867 private IntPtr SwigDirectorMethoddatabase() {
868 return
869 // csdirectorout for OdDbDatabase*, OdDbDatabase&
870 OdDbDatabase.getCPtr(database()).Handle
871;
872 }
873
874 private int SwigDirectorMethoddwgVersion__SWIG_0(MaintReleaseVer pMaintReleaseVer) {
875 return (int)dwgVersion(out pMaintReleaseVer);
876 }
877
878 private int SwigDirectorMethoddwgVersion__SWIG_1() {
879 return (int)dwgVersion();
880 }
881
882 private void SwigDirectorMethodsetController(global::System.IntPtr pFilerController) {
883 setController((pFilerController == global::System.IntPtr.Zero) ? null : new OdDbFilerController(pFilerController, false));
884 }
885
886 private global::System.IntPtr SwigDirectorMethodcontroller() {
887 return OdDbFilerController.getCPtr(controller()).Handle;
888 }
889
890 private void SwigDirectorMethodseek(Int64 /*SIMPLETYPE*/ offset, int seekType) {
891 seek(offset /*SIMPLETYPE*/, (FilerSeekType)seekType);
892 }
893
894 private UInt64 /*SIMPLETYPE*/ SwigDirectorMethodtell() {
895 return tell() /*SIMPLETYPE*/;
896 }
897
898 private int SwigDirectorMethodprecision() {
899 return precision();
900 }
901
902 private void SwigDirectorMethodsetPrecision(int decimalDigits) {
903 setPrecision(decimalDigits);
904 }
905
906 private void SwigDirectorMethodwriteXDataStart() {
908 }
909
910 private bool SwigDirectorMethodincludesDefaultValues() {
911 return includesDefaultValues();
912 }
913
914 private bool SwigDirectorMethodatEOF() {
915 return atEOF();
916 }
917
918 private bool SwigDirectorMethodatEndOfObject() {
919 return atEndOfObject();
920 }
921
922 private bool SwigDirectorMethodatExtendedData() {
923 return atExtendedData();
924 }
925
926 private bool SwigDirectorMethodatSubclassData([MarshalAs(UnmanagedType.LPWStr)]String subClassName) {
927 return atSubclassData(subClassName);
928 }
929
930 private bool SwigDirectorMethodatEmbeddedObjectStart() {
931 return atEmbeddedObjectStart();
932 }
933
934 private int SwigDirectorMethodnextItem() {
935 return nextItem();
936 }
937
938 private IntPtr SwigDirectorMethodnextRb() {
939 return OdResBuf.getCPtr(nextRb()).Handle;
940 }
941
942 private void SwigDirectorMethodwriteRb(IntPtr pRb) {
943 writeRb(
944 (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),pRb,false) /*createInt 6_2*/ // csdirectorin for smart pointer
945);
946 }
947
948 private void SwigDirectorMethodpushBackItem() {
949 pushBackItem();
950 }
951
952 private void SwigDirectorMethodrdString__SWIG_1(IntPtr value) {
953 string tmp_value = Marshal.PtrToStringUni(value);
954 string saved_value = tmp_value;
955 try {
956 rdString(ref tmp_value);
957 } finally {
958 if (tmp_value != saved_value) value = Marshal.StringToCoTaskMemUni(tmp_value);
959 }
960 }
961
962 private bool SwigDirectorMethodrdBool() {
963 return rdBool();
964 }
965
966 private sbyte /*SIMPLETYPE*/ SwigDirectorMethodrdInt8() {
967 return rdInt8() /*SIMPLETYPE*/;
968 }
969
970 private Int16 /*SIMPLETYPE*/ SwigDirectorMethodrdInt16() {
971 return rdInt16() /*SIMPLETYPE*/;
972 }
973
974 private Int32 /*SIMPLETYPE*/ SwigDirectorMethodrdInt32() {
975 return rdInt32() /*SIMPLETYPE*/;
976 }
977
978 private Int64 /*SIMPLETYPE*/ SwigDirectorMethodrdInt64() {
979 return rdInt64() /*SIMPLETYPE*/;
980 }
981
982 private byte /*SIMPLETYPE*/ SwigDirectorMethodrdUInt8() {
983 return rdUInt8() /*SIMPLETYPE*/;
984 }
985
986 private UInt16 /*SIMPLETYPE*/ SwigDirectorMethodrdUInt16() {
987 return rdUInt16() /*SIMPLETYPE*/;
988 }
989
990 private UInt32 /*SIMPLETYPE*/ SwigDirectorMethodrdUInt32() {
991 return rdUInt32() /*SIMPLETYPE*/;
992 }
993
994 private UInt64 /*SIMPLETYPE*/ SwigDirectorMethodrdUInt64() {
995 return rdUInt64() /*SIMPLETYPE*/;
996 }
997
998 private global::System.IntPtr SwigDirectorMethodrdHandle() {
999 return OdDbHandle.getCPtr(rdHandle()).Handle;
1000 }
1001
1002 private global::System.IntPtr SwigDirectorMethodrdObjectId() {
1003 return OdDbObjectId.getCPtr(rdObjectId()).Handle;
1004 }
1005
1006 private double SwigDirectorMethodrdAngle() {
1007 return rdAngle();
1008 }
1009
1010 private double SwigDirectorMethodrdDouble() {
1011 return rdDouble();
1012 }
1013
1014 private void SwigDirectorMethodrdPoint2d(global::System.IntPtr value) {
1015 rdPoint2d(new OdGePoint2d(value, false));
1016 }
1017
1018 private void SwigDirectorMethodrdPoint3d(global::System.IntPtr value) {
1019 rdPoint3d(new OdGePoint3d(value, false));
1020 }
1021
1022 private void SwigDirectorMethodrdVector2d(IntPtr value) {
1023 rdVector2d(
1024 //csdirectorin of INOUT_PARAM_OBJ
1025 new OdGeVector2d(value,true)
1026);
1027 }
1028
1029 private void SwigDirectorMethodrdVector3d(global::System.IntPtr value) {
1030 rdVector3d(new OdGeVector3d(value, false));
1031 }
1032
1033 private void SwigDirectorMethodrdScale3d(global::System.IntPtr value) {
1034 rdScale3d(new OdGeScale3d(value, false));
1035 }
1036
1037 private void SwigDirectorMethodrdBinaryChunk(IntPtr value) {
1039 //csdirectorin of INOUT_PARAM_OBJ
1040 new OdBinaryData(value,true)
1041);
1042 }
1043
1044 private void SwigDirectorMethodcopyItem(IntPtr pSource) {
1045 copyItem(
1046 (OdDbDxfFiler)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbDxfFiler),pSource,false) /*createInt 6_1*/ // csdirectorin for smart pointer
1047);
1048 }
1049
1050 private void SwigDirectorMethodwrName(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value) {
1051 wrName(groupCode, value);
1052 }
1053
1054 private void SwigDirectorMethodwrString(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value) {
1055 wrString(groupCode, value);
1056 }
1057
1058 private void SwigDirectorMethodwrBool(int groupCode, bool value) {
1059 wrBool(groupCode, value);
1060 }
1061
1062 private void SwigDirectorMethodwrInt8(int groupCode, sbyte /*SIMPLETYPE*/ value) {
1063 wrInt8(groupCode, value /*SIMPLETYPE*/);
1064 }
1065
1066 private void SwigDirectorMethodwrUInt8(int groupCode, byte /*SIMPLETYPE*/ value) {
1067 wrUInt8(groupCode, value /*SIMPLETYPE*/);
1068 }
1069
1070 private void SwigDirectorMethodwrInt16(int groupCode, Int16 /*SIMPLETYPE*/ value) {
1071 wrInt16(groupCode, value /*SIMPLETYPE*/);
1072 }
1073
1074 private void SwigDirectorMethodwrUInt16(int groupCode, UInt16 /*SIMPLETYPE*/ value) {
1075 wrUInt16(groupCode, value /*SIMPLETYPE*/);
1076 }
1077
1078 private void SwigDirectorMethodwrInt32(int groupCode, Int32 /*SIMPLETYPE*/ value) {
1079 wrInt32(groupCode, value /*SIMPLETYPE*/);
1080 }
1081
1082 private void SwigDirectorMethodwrUInt32(int groupCode, UInt32 /*SIMPLETYPE*/ value) {
1083 wrUInt32(groupCode, value /*SIMPLETYPE*/);
1084 }
1085
1086 private void SwigDirectorMethodwrInt64(int groupCode, Int64 /*SIMPLETYPE*/ value) {
1087 wrInt64(groupCode, value /*SIMPLETYPE*/);
1088 }
1089
1090 private void SwigDirectorMethodwrUInt64(int groupCode, UInt64 /*SIMPLETYPE*/ value) {
1091 wrUInt64(groupCode, value /*SIMPLETYPE*/);
1092 }
1093
1094 private void SwigDirectorMethodwrHandle(int groupCode, global::System.IntPtr value) {
1095 wrHandle(groupCode, new OdDbHandle(value, true));
1096 }
1097
1098 private void SwigDirectorMethodwrObjectId(int groupCode, global::System.IntPtr value) {
1099 wrObjectId(groupCode, new OdDbObjectId(value, true));
1100 }
1101
1102 private void SwigDirectorMethodwrAngle__SWIG_0(int groupCode, double value, int precision) {
1103 wrAngle(groupCode, value, precision);
1104 }
1105
1106 private void SwigDirectorMethodwrAngle__SWIG_1(int groupCode, double value) {
1107 wrAngle(groupCode, value);
1108 }
1109
1110 private void SwigDirectorMethodwrDouble__SWIG_0(int groupCode, double value, int precision) {
1111 wrDouble(groupCode, value, precision);
1112 }
1113
1114 private void SwigDirectorMethodwrDouble__SWIG_1(int groupCode, double value) {
1115 wrDouble(groupCode, value);
1116 }
1117
1118 private void SwigDirectorMethodwrPoint2d__SWIG_0(int groupCode, global::System.IntPtr value, int precision) {
1119 wrPoint2d(groupCode, new OdGePoint2d(value, false), precision);
1120 }
1121
1122 private void SwigDirectorMethodwrPoint2d__SWIG_1(int groupCode, global::System.IntPtr value) {
1123 wrPoint2d(groupCode, new OdGePoint2d(value, false));
1124 }
1125
1126 private void SwigDirectorMethodwrPoint3d__SWIG_0(int groupCode, global::System.IntPtr value, int precision) {
1127 wrPoint3d(groupCode, new OdGePoint3d(value, false), precision);
1128 }
1129
1130 private void SwigDirectorMethodwrPoint3d__SWIG_1(int groupCode, global::System.IntPtr value) {
1131 wrPoint3d(groupCode, new OdGePoint3d(value, false));
1132 }
1133
1134 private void SwigDirectorMethodwrVector2d__SWIG_0(int groupCode, IntPtr value, int precision) {
1135 wrVector2d(groupCode,
1136 //csdirectorin of INOUT_PARAM_OBJ
1137 new OdGeVector2d(value,true)
1138, precision);
1139 }
1140
1141 private void SwigDirectorMethodwrVector2d__SWIG_1(int groupCode, IntPtr value) {
1142 wrVector2d(groupCode,
1143 //csdirectorin of INOUT_PARAM_OBJ
1144 new OdGeVector2d(value,true)
1145);
1146 }
1147
1148 private void SwigDirectorMethodwrVector3d__SWIG_0(int groupCode, global::System.IntPtr value, int precision) {
1149 wrVector3d(groupCode, new OdGeVector3d(value, false), precision);
1150 }
1151
1152 private void SwigDirectorMethodwrVector3d__SWIG_1(int groupCode, global::System.IntPtr value) {
1153 wrVector3d(groupCode, new OdGeVector3d(value, false));
1154 }
1155
1156 private void SwigDirectorMethodwrScale3d__SWIG_0(int groupCode, global::System.IntPtr value, int precision) {
1157 wrScale3d(groupCode, new OdGeScale3d(value, false), precision);
1158 }
1159
1160 private void SwigDirectorMethodwrScale3d__SWIG_1(int groupCode, global::System.IntPtr value) {
1161 wrScale3d(groupCode, new OdGeScale3d(value, false));
1162 }
1163
1164 private void SwigDirectorMethodwrBinaryChunk__SWIG_0(int groupCode, IntPtr buffer) {
1165 wrBinaryChunk(groupCode, Teigha.Core.Helpers.UnMarshalbyteFixedArray(buffer));
1166 }
1167
1168 public delegate IntPtr SwigDelegateOdDbDxfFiler_0(IntPtr protocolClass);
1169 public delegate IntPtr SwigDelegateOdDbDxfFiler_1();
1170 public delegate void SwigDelegateOdDbDxfFiler_2(IntPtr pSource);
1171 public delegate int SwigDelegateOdDbDxfFiler_3();
1172 public delegate void SwigDelegateOdDbDxfFiler_4();
1173 public delegate int SwigDelegateOdDbDxfFiler_5();
1174 public delegate IntPtr SwigDelegateOdDbDxfFiler_6();
1175 public delegate int SwigDelegateOdDbDxfFiler_7(MaintReleaseVer pMaintReleaseVer);
1176 public delegate int SwigDelegateOdDbDxfFiler_8();
1177 public delegate void SwigDelegateOdDbDxfFiler_9(global::System.IntPtr pFilerController);
1178 public delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_10();
1179 public delegate void SwigDelegateOdDbDxfFiler_11(Int64 /*SIMPLETYPE*/ offset, int seekType);
1180 public delegate UInt64 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_12();
1181 public delegate int SwigDelegateOdDbDxfFiler_13();
1182 public delegate void SwigDelegateOdDbDxfFiler_14(int decimalDigits);
1183 public delegate void SwigDelegateOdDbDxfFiler_15();
1184 public delegate bool SwigDelegateOdDbDxfFiler_16();
1185 public delegate bool SwigDelegateOdDbDxfFiler_17();
1186 public delegate bool SwigDelegateOdDbDxfFiler_18();
1187 public delegate bool SwigDelegateOdDbDxfFiler_19();
1188 public delegate bool SwigDelegateOdDbDxfFiler_20([MarshalAs(UnmanagedType.LPWStr)]String subClassName);
1189 public delegate bool SwigDelegateOdDbDxfFiler_21();
1190 public delegate int SwigDelegateOdDbDxfFiler_22();
1191 public delegate IntPtr SwigDelegateOdDbDxfFiler_23();
1192 public delegate void SwigDelegateOdDbDxfFiler_24(IntPtr pRb);
1193 public delegate void SwigDelegateOdDbDxfFiler_25();
1194 public delegate void SwigDelegateOdDbDxfFiler_26(IntPtr value);
1195 public delegate bool SwigDelegateOdDbDxfFiler_27();
1196 public delegate sbyte /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_28();
1197 public delegate Int16 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_29();
1198 public delegate Int32 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_30();
1199 public delegate Int64 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_31();
1200 public delegate byte /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_32();
1201 public delegate UInt16 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_33();
1202 public delegate UInt32 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_34();
1203 public delegate UInt64 /*SIMPLETYPE*/ SwigDelegateOdDbDxfFiler_35();
1204 public delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_36();
1205 public delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_37();
1206 public delegate double SwigDelegateOdDbDxfFiler_38();
1207 public delegate double SwigDelegateOdDbDxfFiler_39();
1208 public delegate void SwigDelegateOdDbDxfFiler_40(global::System.IntPtr value);
1209 public delegate void SwigDelegateOdDbDxfFiler_41(global::System.IntPtr value);
1210 public delegate void SwigDelegateOdDbDxfFiler_42(IntPtr value);
1211 public delegate void SwigDelegateOdDbDxfFiler_43(global::System.IntPtr value);
1212 public delegate void SwigDelegateOdDbDxfFiler_44(global::System.IntPtr value);
1213 public delegate void SwigDelegateOdDbDxfFiler_45(IntPtr value);
1214 public delegate void SwigDelegateOdDbDxfFiler_46(IntPtr pSource);
1215 public delegate void SwigDelegateOdDbDxfFiler_47(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value);
1216 public delegate void SwigDelegateOdDbDxfFiler_48(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value);
1217 public delegate void SwigDelegateOdDbDxfFiler_49(int groupCode, bool value);
1218 public delegate void SwigDelegateOdDbDxfFiler_50(int groupCode, sbyte /*SIMPLETYPE*/ value);
1219 public delegate void SwigDelegateOdDbDxfFiler_51(int groupCode, byte /*SIMPLETYPE*/ value);
1220 public delegate void SwigDelegateOdDbDxfFiler_52(int groupCode, Int16 /*SIMPLETYPE*/ value);
1221 public delegate void SwigDelegateOdDbDxfFiler_53(int groupCode, UInt16 /*SIMPLETYPE*/ value);
1222 public delegate void SwigDelegateOdDbDxfFiler_54(int groupCode, Int32 /*SIMPLETYPE*/ value);
1223 public delegate void SwigDelegateOdDbDxfFiler_55(int groupCode, UInt32 /*SIMPLETYPE*/ value);
1224 public delegate void SwigDelegateOdDbDxfFiler_56(int groupCode, Int64 /*SIMPLETYPE*/ value);
1225 public delegate void SwigDelegateOdDbDxfFiler_57(int groupCode, UInt64 /*SIMPLETYPE*/ value);
1226 public delegate void SwigDelegateOdDbDxfFiler_58(int groupCode, global::System.IntPtr value);
1227 public delegate void SwigDelegateOdDbDxfFiler_59(int groupCode, global::System.IntPtr value);
1228 public delegate void SwigDelegateOdDbDxfFiler_60(int groupCode, double value, int precision);
1229 public delegate void SwigDelegateOdDbDxfFiler_61(int groupCode, double value);
1230 public delegate void SwigDelegateOdDbDxfFiler_62(int groupCode, double value, int precision);
1231 public delegate void SwigDelegateOdDbDxfFiler_63(int groupCode, double value);
1232 public delegate void SwigDelegateOdDbDxfFiler_64(int groupCode, global::System.IntPtr value, int precision);
1233 public delegate void SwigDelegateOdDbDxfFiler_65(int groupCode, global::System.IntPtr value);
1234 public delegate void SwigDelegateOdDbDxfFiler_66(int groupCode, global::System.IntPtr value, int precision);
1235 public delegate void SwigDelegateOdDbDxfFiler_67(int groupCode, global::System.IntPtr value);
1236 public delegate void SwigDelegateOdDbDxfFiler_68(int groupCode, IntPtr value, int precision);
1237 public delegate void SwigDelegateOdDbDxfFiler_69(int groupCode, IntPtr value);
1238 public delegate void SwigDelegateOdDbDxfFiler_70(int groupCode, global::System.IntPtr value, int precision);
1239 public delegate void SwigDelegateOdDbDxfFiler_71(int groupCode, global::System.IntPtr value);
1240 public delegate void SwigDelegateOdDbDxfFiler_72(int groupCode, global::System.IntPtr value, int precision);
1241 public delegate void SwigDelegateOdDbDxfFiler_73(int groupCode, global::System.IntPtr value);
1242 public delegate void SwigDelegateOdDbDxfFiler_74(int groupCode, IntPtr buffer);
1243
1244 private SwigDelegateOdDbDxfFiler_0 swigDelegate0;
1245 private SwigDelegateOdDbDxfFiler_1 swigDelegate1;
1246 private SwigDelegateOdDbDxfFiler_2 swigDelegate2;
1247 private SwigDelegateOdDbDxfFiler_3 swigDelegate3;
1248 private SwigDelegateOdDbDxfFiler_4 swigDelegate4;
1249 private SwigDelegateOdDbDxfFiler_5 swigDelegate5;
1250 private SwigDelegateOdDbDxfFiler_6 swigDelegate6;
1251 private SwigDelegateOdDbDxfFiler_7 swigDelegate7;
1252 private SwigDelegateOdDbDxfFiler_8 swigDelegate8;
1253 private SwigDelegateOdDbDxfFiler_9 swigDelegate9;
1254 private SwigDelegateOdDbDxfFiler_10 swigDelegate10;
1255 private SwigDelegateOdDbDxfFiler_11 swigDelegate11;
1256 private SwigDelegateOdDbDxfFiler_12 swigDelegate12;
1257 private SwigDelegateOdDbDxfFiler_13 swigDelegate13;
1258 private SwigDelegateOdDbDxfFiler_14 swigDelegate14;
1259 private SwigDelegateOdDbDxfFiler_15 swigDelegate15;
1260 private SwigDelegateOdDbDxfFiler_16 swigDelegate16;
1261 private SwigDelegateOdDbDxfFiler_17 swigDelegate17;
1262 private SwigDelegateOdDbDxfFiler_18 swigDelegate18;
1263 private SwigDelegateOdDbDxfFiler_19 swigDelegate19;
1264 private SwigDelegateOdDbDxfFiler_20 swigDelegate20;
1265 private SwigDelegateOdDbDxfFiler_21 swigDelegate21;
1266 private SwigDelegateOdDbDxfFiler_22 swigDelegate22;
1267 private SwigDelegateOdDbDxfFiler_23 swigDelegate23;
1268 private SwigDelegateOdDbDxfFiler_24 swigDelegate24;
1269 private SwigDelegateOdDbDxfFiler_25 swigDelegate25;
1270 private SwigDelegateOdDbDxfFiler_26 swigDelegate26;
1271 private SwigDelegateOdDbDxfFiler_27 swigDelegate27;
1272 private SwigDelegateOdDbDxfFiler_28 swigDelegate28;
1273 private SwigDelegateOdDbDxfFiler_29 swigDelegate29;
1274 private SwigDelegateOdDbDxfFiler_30 swigDelegate30;
1275 private SwigDelegateOdDbDxfFiler_31 swigDelegate31;
1276 private SwigDelegateOdDbDxfFiler_32 swigDelegate32;
1277 private SwigDelegateOdDbDxfFiler_33 swigDelegate33;
1278 private SwigDelegateOdDbDxfFiler_34 swigDelegate34;
1279 private SwigDelegateOdDbDxfFiler_35 swigDelegate35;
1280 private SwigDelegateOdDbDxfFiler_36 swigDelegate36;
1281 private SwigDelegateOdDbDxfFiler_37 swigDelegate37;
1282 private SwigDelegateOdDbDxfFiler_38 swigDelegate38;
1283 private SwigDelegateOdDbDxfFiler_39 swigDelegate39;
1284 private SwigDelegateOdDbDxfFiler_40 swigDelegate40;
1285 private SwigDelegateOdDbDxfFiler_41 swigDelegate41;
1286 private SwigDelegateOdDbDxfFiler_42 swigDelegate42;
1287 private SwigDelegateOdDbDxfFiler_43 swigDelegate43;
1288 private SwigDelegateOdDbDxfFiler_44 swigDelegate44;
1289 private SwigDelegateOdDbDxfFiler_45 swigDelegate45;
1290 private SwigDelegateOdDbDxfFiler_46 swigDelegate46;
1291 private SwigDelegateOdDbDxfFiler_47 swigDelegate47;
1292 private SwigDelegateOdDbDxfFiler_48 swigDelegate48;
1293 private SwigDelegateOdDbDxfFiler_49 swigDelegate49;
1294 private SwigDelegateOdDbDxfFiler_50 swigDelegate50;
1295 private SwigDelegateOdDbDxfFiler_51 swigDelegate51;
1296 private SwigDelegateOdDbDxfFiler_52 swigDelegate52;
1297 private SwigDelegateOdDbDxfFiler_53 swigDelegate53;
1298 private SwigDelegateOdDbDxfFiler_54 swigDelegate54;
1299 private SwigDelegateOdDbDxfFiler_55 swigDelegate55;
1300 private SwigDelegateOdDbDxfFiler_56 swigDelegate56;
1301 private SwigDelegateOdDbDxfFiler_57 swigDelegate57;
1302 private SwigDelegateOdDbDxfFiler_58 swigDelegate58;
1303 private SwigDelegateOdDbDxfFiler_59 swigDelegate59;
1304 private SwigDelegateOdDbDxfFiler_60 swigDelegate60;
1305 private SwigDelegateOdDbDxfFiler_61 swigDelegate61;
1306 private SwigDelegateOdDbDxfFiler_62 swigDelegate62;
1307 private SwigDelegateOdDbDxfFiler_63 swigDelegate63;
1308 private SwigDelegateOdDbDxfFiler_64 swigDelegate64;
1309 private SwigDelegateOdDbDxfFiler_65 swigDelegate65;
1310 private SwigDelegateOdDbDxfFiler_66 swigDelegate66;
1311 private SwigDelegateOdDbDxfFiler_67 swigDelegate67;
1312 private SwigDelegateOdDbDxfFiler_68 swigDelegate68;
1313 private SwigDelegateOdDbDxfFiler_69 swigDelegate69;
1314 private SwigDelegateOdDbDxfFiler_70 swigDelegate70;
1315 private SwigDelegateOdDbDxfFiler_71 swigDelegate71;
1316 private SwigDelegateOdDbDxfFiler_72 swigDelegate72;
1317 private SwigDelegateOdDbDxfFiler_73 swigDelegate73;
1318 private SwigDelegateOdDbDxfFiler_74 swigDelegate74;
1319
1320 private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { typeof(OdRxClass) };
1321 private static global::System.Type[] swigMethodTypes1 = new global::System.Type[] { };
1322 private static global::System.Type[] swigMethodTypes2 = new global::System.Type[] { typeof(OdRxObject) };
1323 private static global::System.Type[] swigMethodTypes3 = new global::System.Type[] { };
1324 private static global::System.Type[] swigMethodTypes4 = new global::System.Type[] { };
1325 private static global::System.Type[] swigMethodTypes5 = new global::System.Type[] { };
1326 private static global::System.Type[] swigMethodTypes6 = new global::System.Type[] { };
1327 private static global::System.Type[] swigMethodTypes7 = new global::System.Type[] { typeof(MaintReleaseVer).MakeByRefType() };
1328 private static global::System.Type[] swigMethodTypes8 = new global::System.Type[] { };
1329 private static global::System.Type[] swigMethodTypes9 = new global::System.Type[] { typeof(OdDbFilerController) };
1330 private static global::System.Type[] swigMethodTypes10 = new global::System.Type[] { };
1331 private static global::System.Type[] swigMethodTypes11 = new global::System.Type[] { typeof(Int64), typeof(FilerSeekType) };
1332 private static global::System.Type[] swigMethodTypes12 = new global::System.Type[] { };
1333 private static global::System.Type[] swigMethodTypes13 = new global::System.Type[] { };
1334 private static global::System.Type[] swigMethodTypes14 = new global::System.Type[] { typeof(int) };
1335 private static global::System.Type[] swigMethodTypes15 = new global::System.Type[] { };
1336 private static global::System.Type[] swigMethodTypes16 = new global::System.Type[] { };
1337 private static global::System.Type[] swigMethodTypes17 = new global::System.Type[] { };
1338 private static global::System.Type[] swigMethodTypes18 = new global::System.Type[] { };
1339 private static global::System.Type[] swigMethodTypes19 = new global::System.Type[] { };
1340 private static global::System.Type[] swigMethodTypes20 = new global::System.Type[] { typeof(String) };
1341 private static global::System.Type[] swigMethodTypes21 = new global::System.Type[] { };
1342 private static global::System.Type[] swigMethodTypes22 = new global::System.Type[] { };
1343 private static global::System.Type[] swigMethodTypes23 = new global::System.Type[] { };
1344 private static global::System.Type[] swigMethodTypes24 = new global::System.Type[] { typeof(OdResBuf) };
1345 private static global::System.Type[] swigMethodTypes25 = new global::System.Type[] { };
1346 private static global::System.Type[] swigMethodTypes26 = new global::System.Type[] { typeof(string).MakeByRefType() };
1347 private static global::System.Type[] swigMethodTypes27 = new global::System.Type[] { };
1348 private static global::System.Type[] swigMethodTypes28 = new global::System.Type[] { };
1349 private static global::System.Type[] swigMethodTypes29 = new global::System.Type[] { };
1350 private static global::System.Type[] swigMethodTypes30 = new global::System.Type[] { };
1351 private static global::System.Type[] swigMethodTypes31 = new global::System.Type[] { };
1352 private static global::System.Type[] swigMethodTypes32 = new global::System.Type[] { };
1353 private static global::System.Type[] swigMethodTypes33 = new global::System.Type[] { };
1354 private static global::System.Type[] swigMethodTypes34 = new global::System.Type[] { };
1355 private static global::System.Type[] swigMethodTypes35 = new global::System.Type[] { };
1356 private static global::System.Type[] swigMethodTypes36 = new global::System.Type[] { };
1357 private static global::System.Type[] swigMethodTypes37 = new global::System.Type[] { };
1358 private static global::System.Type[] swigMethodTypes38 = new global::System.Type[] { };
1359 private static global::System.Type[] swigMethodTypes39 = new global::System.Type[] { };
1360 private static global::System.Type[] swigMethodTypes40 = new global::System.Type[] { typeof(OdGePoint2d) };
1361 private static global::System.Type[] swigMethodTypes41 = new global::System.Type[] { typeof(OdGePoint3d) };
1362 private static global::System.Type[] swigMethodTypes42 = new global::System.Type[] { typeof(OdGeVector2d) };
1363 private static global::System.Type[] swigMethodTypes43 = new global::System.Type[] { typeof(OdGeVector3d) };
1364 private static global::System.Type[] swigMethodTypes44 = new global::System.Type[] { typeof(OdGeScale3d) };
1365 private static global::System.Type[] swigMethodTypes45 = new global::System.Type[] { typeof(OdBinaryData) };
1366 private static global::System.Type[] swigMethodTypes46 = new global::System.Type[] { typeof(OdDbDxfFiler) };
1367 private static global::System.Type[] swigMethodTypes47 = new global::System.Type[] { typeof(int), typeof(String) };
1368 private static global::System.Type[] swigMethodTypes48 = new global::System.Type[] { typeof(int), typeof(String) };
1369 private static global::System.Type[] swigMethodTypes49 = new global::System.Type[] { typeof(int), typeof(bool) };
1370 private static global::System.Type[] swigMethodTypes50 = new global::System.Type[] { typeof(int), typeof(sbyte) };
1371 private static global::System.Type[] swigMethodTypes51 = new global::System.Type[] { typeof(int), typeof(byte) };
1372 private static global::System.Type[] swigMethodTypes52 = new global::System.Type[] { typeof(int), typeof(Int16) };
1373 private static global::System.Type[] swigMethodTypes53 = new global::System.Type[] { typeof(int), typeof(UInt16) };
1374 private static global::System.Type[] swigMethodTypes54 = new global::System.Type[] { typeof(int), typeof(Int32) };
1375 private static global::System.Type[] swigMethodTypes55 = new global::System.Type[] { typeof(int), typeof(UInt32) };
1376 private static global::System.Type[] swigMethodTypes56 = new global::System.Type[] { typeof(int), typeof(Int64) };
1377 private static global::System.Type[] swigMethodTypes57 = new global::System.Type[] { typeof(int), typeof(UInt64) };
1378 private static global::System.Type[] swigMethodTypes58 = new global::System.Type[] { typeof(int), typeof(OdDbHandle) };
1379 private static global::System.Type[] swigMethodTypes59 = new global::System.Type[] { typeof(int), typeof(OdDbObjectId) };
1380 private static global::System.Type[] swigMethodTypes60 = new global::System.Type[] { typeof(int), typeof(double), typeof(int) };
1381 private static global::System.Type[] swigMethodTypes61 = new global::System.Type[] { typeof(int), typeof(double) };
1382 private static global::System.Type[] swigMethodTypes62 = new global::System.Type[] { typeof(int), typeof(double), typeof(int) };
1383 private static global::System.Type[] swigMethodTypes63 = new global::System.Type[] { typeof(int), typeof(double) };
1384 private static global::System.Type[] swigMethodTypes64 = new global::System.Type[] { typeof(int), typeof(OdGePoint2d), typeof(int) };
1385 private static global::System.Type[] swigMethodTypes65 = new global::System.Type[] { typeof(int), typeof(OdGePoint2d) };
1386 private static global::System.Type[] swigMethodTypes66 = new global::System.Type[] { typeof(int), typeof(OdGePoint3d), typeof(int) };
1387 private static global::System.Type[] swigMethodTypes67 = new global::System.Type[] { typeof(int), typeof(OdGePoint3d) };
1388 private static global::System.Type[] swigMethodTypes68 = new global::System.Type[] { typeof(int), typeof(OdGeVector2d), typeof(int) };
1389 private static global::System.Type[] swigMethodTypes69 = new global::System.Type[] { typeof(int), typeof(OdGeVector2d) };
1390 private static global::System.Type[] swigMethodTypes70 = new global::System.Type[] { typeof(int), typeof(OdGeVector3d), typeof(int) };
1391 private static global::System.Type[] swigMethodTypes71 = new global::System.Type[] { typeof(int), typeof(OdGeVector3d) };
1392 private static global::System.Type[] swigMethodTypes72 = new global::System.Type[] { typeof(int), typeof(OdGeScale3d), typeof(int) };
1393 private static global::System.Type[] swigMethodTypes73 = new global::System.Type[] { typeof(int), typeof(OdGeScale3d) };
1394 private static global::System.Type[] swigMethodTypes74 = new global::System.Type[] { typeof(int), typeof(byte[] /*SIMPLEFIXED_ARRAY*/) };
1395 public const int kDfltPrec = -1;
1396 public const int kMaxPrec = 15+1;
1397
1398}
1399
1400}
static HandleRef getCPtr(OdBinaryData obj)
static HandleRef getCPtr(OdDbHandle obj)
Definition OdDbHandle.cs:26
static HandleRef getCPtr(OdGePoint2d obj)
static HandleRef getCPtr(OdGePoint3d obj)
static HandleRef getCPtr(OdGeScale3d obj)
static HandleRef getCPtr(OdGeVector2d obj)
static HandleRef getCPtr(OdGeVector3d obj)
static HandleRef getCPtr(OdRxClass obj)
Definition OdRxClass.cs:25
OdRxObject(IntPtr cPtr, bool cMemoryOwn)
Definition OdRxObject.cs:21
virtual void copyFrom(OdRxObject pSource)
static HandleRef getCPtr(OdRxObject obj)
Definition OdRxObject.cs:26
virtual void wrAngle(int groupCode, double value)
virtual void pushBackItem()
override void Dispose(bool disposing)
delegate void SwigDelegateOdDbDxfFiler_4()
delegate void SwigDelegateOdDbDxfFiler_24(IntPtr pRb)
delegate void SwigDelegateOdDbDxfFiler_58(int groupCode, global::System.IntPtr value)
virtual void wrBool(int groupCode, bool value)
delegate void SwigDelegateOdDbDxfFiler_59(int groupCode, global::System.IntPtr value)
virtual double rdDouble()
virtual void wrUInt32(int groupCode, UInt32 value)
delegate bool SwigDelegateOdDbDxfFiler_20([MarshalAs(UnmanagedType.LPWStr)]String subClassName)
delegate bool SwigDelegateOdDbDxfFiler_21()
void wrVector3dOpt(int groupCode, OdGeVector3d value, OdGeVector3d defaultValue, int precision)
void wrAngleOpt(int groupCode, double value, double defaultValue, int precision)
virtual void wrScale3d(int groupCode, OdGeScale3d value, int precision)
void wrInt8Opt(int groupCode, sbyte value, sbyte defaultValue)
delegate Int16 SwigDelegateOdDbDxfFiler_29()
delegate IntPtr SwigDelegateOdDbDxfFiler_23()
virtual void wrPoint2d(int groupCode, OdGePoint2d value, int precision)
delegate bool SwigDelegateOdDbDxfFiler_19()
virtual OdResBuf nextRb()
delegate void SwigDelegateOdDbDxfFiler_43(global::System.IntPtr value)
delegate UInt64 SwigDelegateOdDbDxfFiler_12()
virtual Teigha.Core.DwgVersion vb_dwgVersion(out Teigha.Core.MaintReleaseVer pMaintReleaseVer)
virtual OdDbObjectId rdObjectId()
virtual void wrUInt8(int groupCode, byte value)
delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_37()
virtual void writeXDataStart()
virtual void wrDouble(int groupCode, double value)
delegate IntPtr SwigDelegateOdDbDxfFiler_0(IntPtr protocolClass)
delegate sbyte SwigDelegateOdDbDxfFiler_28()
void wrDoubleOpt(int groupCode, double value)
virtual void wrVector2d(int groupCode, OdGeVector2d value)
virtual void wrVector3d(int groupCode, OdGeVector3d value)
delegate UInt64 SwigDelegateOdDbDxfFiler_35()
delegate void SwigDelegateOdDbDxfFiler_57(int groupCode, UInt64 value)
virtual UInt64 rdUInt64()
delegate void SwigDelegateOdDbDxfFiler_9(global::System.IntPtr pFilerController)
void wrBoolOpt(int groupCode, bool value, bool defaultValue)
delegate bool SwigDelegateOdDbDxfFiler_18()
void wrPoint2dOpt(int groupCode, OdGePoint2d value, OdGePoint2d defaultValue)
delegate int SwigDelegateOdDbDxfFiler_3()
void wrSubclassMarker(String value)
delegate void SwigDelegateOdDbDxfFiler_15()
delegate UInt16 SwigDelegateOdDbDxfFiler_33()
delegate void SwigDelegateOdDbDxfFiler_73(int groupCode, global::System.IntPtr value)
virtual Teigha.TD.OdDbFiler.FilerType vb_filerType()
delegate double SwigDelegateOdDbDxfFiler_38()
static new OdRxClass desc()
void wrVector2dOpt(int groupCode, OdGeVector2d value, OdGeVector2d defaultValue)
void wrUInt16Opt(int groupCode, UInt16 value, UInt16 defaultValue)
delegate void SwigDelegateOdDbDxfFiler_11(Int64 offset, int seekType)
OdDbDxfFiler(IntPtr cPtr, bool cMemoryOwn)
delegate int SwigDelegateOdDbDxfFiler_8()
delegate int SwigDelegateOdDbDxfFiler_5()
void wrVector3dOpt(int groupCode, OdGeVector3d value, OdGeVector3d defaultValue)
delegate double SwigDelegateOdDbDxfFiler_39()
virtual void rdScale3d(OdGeScale3d value)
virtual bool atEndOfObject()
static new OdDbDxfFiler createObject()
delegate UInt32 SwigDelegateOdDbDxfFiler_34()
delegate int SwigDelegateOdDbDxfFiler_22()
delegate void SwigDelegateOdDbDxfFiler_66(int groupCode, global::System.IntPtr value, int precision)
delegate void SwigDelegateOdDbDxfFiler_45(IntPtr value)
void wrAngleOpt(int groupCode, double value)
delegate void SwigDelegateOdDbDxfFiler_47(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value)
virtual void seek(Int64 offset, FilerSeekType seekType)
delegate void SwigDelegateOdDbDxfFiler_40(global::System.IntPtr value)
delegate void SwigDelegateOdDbDxfFiler_49(int groupCode, bool value)
virtual UInt64 tell()
virtual void rdBinaryChunk(OdBinaryData value)
delegate void SwigDelegateOdDbDxfFiler_67(int groupCode, global::System.IntPtr value)
delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_36()
override OdRxClass isA()
void wrPoint3dOpt(int groupCode, OdGePoint3d value, OdGePoint3d defaultValue, int precision)
virtual void wrAngle(int groupCode, double value, int precision)
delegate IntPtr SwigDelegateOdDbDxfFiler_6()
void wrPoint2dOpt(int groupCode, OdGePoint2d value, OdGePoint2d defaultValue, int precision)
virtual void setPrecision(int decimalDigits)
delegate void SwigDelegateOdDbDxfFiler_42(IntPtr value)
virtual void wrVector3d(int groupCode, OdGeVector3d value, int precision)
virtual void wrScale3d(int groupCode, OdGeScale3d value)
static HandleRef getCPtr(OdDbDxfFiler obj)
delegate void SwigDelegateOdDbDxfFiler_26(IntPtr value)
virtual void wrPoint3d(int groupCode, OdGePoint3d value)
delegate int SwigDelegateOdDbDxfFiler_13()
virtual UInt16 rdUInt16()
virtual OdDbHandle rdHandle()
virtual void rdString(ref string value)
delegate void SwigDelegateOdDbDxfFiler_52(int groupCode, Int16 value)
virtual void rdVector3d(OdGeVector3d value)
delegate Int64 SwigDelegateOdDbDxfFiler_31()
delegate void SwigDelegateOdDbDxfFiler_65(int groupCode, global::System.IntPtr value)
delegate void SwigDelegateOdDbDxfFiler_72(int groupCode, global::System.IntPtr value, int precision)
virtual void wrBinaryChunk(int groupCode, byte[] buffer)
virtual void wrPoint3d(int groupCode, OdGePoint3d value, int precision)
void wrVector2dOpt(int groupCode, OdGeVector2d value, OdGeVector2d defaultValue, int precision)
virtual bool rdBool()
virtual Int64 rdInt64()
delegate void SwigDelegateOdDbDxfFiler_51(int groupCode, byte value)
delegate Int32 SwigDelegateOdDbDxfFiler_30()
delegate bool SwigDelegateOdDbDxfFiler_27()
static OdDbDxfFiler cast(OdRxObject pObj)
void wrInt16Opt(int groupCode, Int16 value, Int16 defaultValue)
virtual void wrString(int groupCode, String value)
delegate void SwigDelegateOdDbDxfFiler_2(IntPtr pSource)
delegate void SwigDelegateOdDbDxfFiler_50(int groupCode, sbyte value)
void wrUInt8Opt(int groupCode, byte value, byte defaultValue)
virtual void wrUInt64(int groupCode, UInt64 value)
virtual void wrHandle(int groupCode, OdDbHandle value)
delegate void SwigDelegateOdDbDxfFiler_48(int groupCode, [MarshalAs(UnmanagedType.LPWStr)]String value)
void wrPoint3dOpt(int groupCode, OdGePoint3d value, OdGePoint3d defaultValue)
delegate void SwigDelegateOdDbDxfFiler_74(int groupCode, IntPtr buffer)
virtual void copyItem(OdDbDxfFiler pSource)
delegate IntPtr SwigDelegateOdDbDxfFiler_1()
virtual void wrVector2d(int groupCode, OdGeVector2d value, int precision)
delegate void SwigDelegateOdDbDxfFiler_68(int groupCode, IntPtr value, int precision)
delegate void SwigDelegateOdDbDxfFiler_62(int groupCode, double value, int precision)
virtual byte rdUInt8()
void wrInt64Opt(int groupCode, Int64 value, Int64 defaultValue)
delegate global::System.IntPtr SwigDelegateOdDbDxfFiler_10()
virtual bool atSubclassData(String subClassName)
virtual bool atExtendedData()
virtual bool atEmbeddedObjectStart()
delegate bool SwigDelegateOdDbDxfFiler_17()
virtual Int16 rdInt16()
delegate void SwigDelegateOdDbDxfFiler_44(global::System.IntPtr value)
virtual UInt32 rdUInt32()
void wrDoubleOpt(int groupCode, double value, double defaultValue)
delegate void SwigDelegateOdDbDxfFiler_55(int groupCode, UInt32 value)
delegate void SwigDelegateOdDbDxfFiler_61(int groupCode, double value)
virtual Int32 rdInt32()
virtual void writeRb(OdResBuf pRb)
virtual void wrName(int groupCode, String value)
void wrUInt64Opt(int groupCode, UInt64 value, UInt64 defaultValue)
virtual bool includesDefaultValues()
virtual sbyte rdInt8()
delegate void SwigDelegateOdDbDxfFiler_14(int decimalDigits)
virtual void wrDouble(int groupCode, double value, int precision)
virtual Teigha.Core.DwgVersion vb_dwgVersion()
delegate void SwigDelegateOdDbDxfFiler_70(int groupCode, global::System.IntPtr value, int precision)
delegate byte SwigDelegateOdDbDxfFiler_32()
delegate void SwigDelegateOdDbDxfFiler_60(int groupCode, double value, int precision)
virtual void rdVector2d(OdGeVector2d value)
virtual void wrInt16(int groupCode, Int16 value)
void wrObjectIdOpt(int groupCode, OdDbObjectId value)
delegate void SwigDelegateOdDbDxfFiler_25()
delegate void SwigDelegateOdDbDxfFiler_56(int groupCode, Int64 value)
virtual void wrUInt16(int groupCode, UInt16 value)
virtual void wrInt8(int groupCode, sbyte value)
virtual void wrPoint2d(int groupCode, OdGePoint2d value)
virtual void wrInt64(int groupCode, Int64 value)
virtual double rdAngle()
delegate void SwigDelegateOdDbDxfFiler_41(global::System.IntPtr value)
virtual void rdPoint3d(OdGePoint3d value)
void wrUInt32Opt(int groupCode, UInt32 value, UInt32 defaultValue)
delegate void SwigDelegateOdDbDxfFiler_71(int groupCode, global::System.IntPtr value)
delegate void SwigDelegateOdDbDxfFiler_64(int groupCode, global::System.IntPtr value, int precision)
virtual int precision()
virtual void wrObjectId(int groupCode, OdDbObjectId value)
delegate int SwigDelegateOdDbDxfFiler_7(MaintReleaseVer pMaintReleaseVer)
delegate void SwigDelegateOdDbDxfFiler_63(int groupCode, double value)
void wrInt32Opt(int groupCode, Int32 value, Int32 defaultValue)
void wrDoubleOpt(int groupCode, double value, double defaultValue, int precision)
delegate void SwigDelegateOdDbDxfFiler_46(IntPtr pSource)
override OdRxObject queryX(OdRxClass protocolClass)
virtual void rdPoint2d(OdGePoint2d value)
delegate void SwigDelegateOdDbDxfFiler_53(int groupCode, UInt16 value)
void wrStringOpt(int groupCode, String value)
delegate void SwigDelegateOdDbDxfFiler_54(int groupCode, Int32 value)
delegate bool SwigDelegateOdDbDxfFiler_16()
delegate void SwigDelegateOdDbDxfFiler_69(int groupCode, IntPtr value)
virtual void wrInt32(int groupCode, Int32 value)
void wrBinaryChunk(int groupCode, OdBinaryData value)
static string getRealClassName(IntPtr ptr)
void wrAngleOpt(int groupCode, double value, double defaultValue)
virtual OdResult filerStatus()
Definition OdDbFiler.cs:104
virtual DwgVersion dwgVersion()
Definition OdDbFiler.cs:134
virtual OdDbFilerController controller()
Definition OdDbFiler.cs:152
virtual OdDbFiler.FilerType filerType()
Definition OdDbFiler.cs:115
virtual void resetFilerStatus()
Definition OdDbFiler.cs:110
virtual OdDbDatabase database()
Definition OdDbFiler.cs:121
virtual void setController(OdDbFilerController pFilerController)
Definition OdDbFiler.cs:147
static HandleRef getCPtr(OdDbObjectId obj)
static HandleRef getCPtr(OdResBuf obj)
Definition OdResBuf.cs:26
static global::System.Exception Retrieve()
static void OdDbDxfFiler_wrScale3d__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdDbDxfFiler_wrBoolOpt(HandleRef jarg1, int jarg2, bool jarg3, bool jarg4)
static UInt16 OdDbDxfFiler_rdUInt16(HandleRef jarg1)
static double OdDbDxfFiler_rdAngle(HandleRef jarg1)
static void OdDbDxfFiler_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_0 delegate0, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_1 delegate1, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_2 delegate2, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_3 delegate3, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_4 delegate4, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_5 delegate5, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_6 delegate6, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_7 delegate7, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_8 delegate8, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_9 delegate9, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_10 delegate10, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_11 delegate11, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_12 delegate12, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_13 delegate13, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_14 delegate14, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_15 delegate15, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_16 delegate16, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_17 delegate17, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_18 delegate18, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_19 delegate19, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_20 delegate20, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_21 delegate21, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_22 delegate22, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_23 delegate23, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_24 delegate24, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_25 delegate25, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_26 delegate26, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_27 delegate27, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_28 delegate28, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_29 delegate29, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_30 delegate30, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_31 delegate31, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_32 delegate32, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_33 delegate33, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_34 delegate34, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_35 delegate35, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_36 delegate36, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_37 delegate37, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_38 delegate38, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_39 delegate39, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_40 delegate40, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_41 delegate41, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_42 delegate42, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_43 delegate43, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_44 delegate44, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_45 delegate45, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_46 delegate46, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_47 delegate47, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_48 delegate48, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_49 delegate49, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_50 delegate50, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_51 delegate51, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_52 delegate52, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_53 delegate53, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_54 delegate54, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_55 delegate55, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_56 delegate56, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_57 delegate57, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_58 delegate58, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_59 delegate59, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_60 delegate60, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_61 delegate61, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_62 delegate62, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_63 delegate63, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_64 delegate64, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_65 delegate65, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_66 delegate66, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_67 delegate67, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_68 delegate68, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_69 delegate69, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_70 delegate70, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_71 delegate71, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_72 delegate72, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_73 delegate73, OdDbDxfFiler.SwigDelegateOdDbDxfFiler_74 delegate74)
static void OdDbDxfFiler_rdScale3d(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr OdDbDxfFiler_desc()
static void OdDbDxfFiler_seekSwigExplicitOdDbDxfFiler(HandleRef jarg1, Int64 jarg2, int jarg3)
static void OdDbDxfFiler_wrAngle__SWIG_0(HandleRef jarg1, int jarg2, double jarg3, int jarg4)
static void OdDbDxfFiler_wrVector3d__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr OdDbDxfFiler_rdObjectId(HandleRef jarg1)
static bool OdDbDxfFiler_atSubclassDataSwigExplicitOdDbDxfFiler(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr OdDbDxfFiler_isASwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_wrDouble__SWIG_0(HandleRef jarg1, int jarg2, double jarg3, int jarg4)
static IntPtr OdDbDxfFiler_nextRbSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static IntPtr OdDbDxfFiler_cast(HandleRef jarg1)
static void OdDbDxfFiler_wrUInt16Opt(HandleRef jarg1, int jarg2, UInt16 jarg3, UInt16 jarg4)
static void OdDbDxfFiler_wrPoint3d__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void OdDbDxfFiler_rdString__SWIG_1(HandleRef jarg1, ref IntPtr jarg2)
static IntPtr OdDbDxfFiler_createObject()
static void OdDbDxfFiler_wrHandle(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 OdDbDxfFiler_rdInt32(HandleRef jarg1)
static Int16 OdDbDxfFiler_rdInt16(HandleRef jarg1)
static void OdDbDxfFiler_wrInt64(HandleRef jarg1, int jarg2, Int64 jarg3)
static void OdDbDxfFiler_seek(HandleRef jarg1, Int64 jarg2, int jarg3)
static bool OdDbDxfFiler_atEmbeddedObjectStart(HandleRef jarg1)
static void OdDbDxfFiler_pushBackItemSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static IntPtr OdDbDxfFiler_isA(HandleRef jarg1)
static void OdDbDxfFiler_wrAngleOpt__SWIG_0(HandleRef jarg1, int jarg2, double jarg3, double jarg4, int jarg5)
static void OdDbDxfFiler_wrScale3d__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static bool OdDbDxfFiler_atEndOfObject(HandleRef jarg1)
static void OdDbDxfFiler_wrPoint2d__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdDbDxfFiler_wrVector3dOpt__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void OdDbDxfFiler_wrObjectIdOpt(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdDbDxfFiler_wrUInt8Opt(HandleRef jarg1, int jarg2, byte jarg3, byte jarg4)
static Int64 OdDbDxfFiler_rdInt64(HandleRef jarg1)
static void OdDbDxfFiler_wrUInt16(HandleRef jarg1, int jarg2, UInt16 jarg3)
static void OdDbDxfFiler_wrPoint2d__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void OdDbDxfFiler_rdPoint2d(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt64 OdDbDxfFiler_rdUInt64(HandleRef jarg1)
static bool OdDbDxfFiler_atEndOfObjectSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_setPrecision(HandleRef jarg1, int jarg2)
static void OdDbDxfFiler_wrAngleOpt__SWIG_2(HandleRef jarg1, int jarg2, double jarg3)
static void OdDbDxfFiler_copyItem(HandleRef jarg1, HandleRef jarg2)
static void OdDbDxfFiler_wrVector2d__SWIG_0(HandleRef jarg1, int jarg2, IntPtr jarg3, int jarg4)
static void OdDbDxfFiler_wrPoint3d__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr OdDbDxfFiler_queryX(HandleRef jarg1, HandleRef jarg2)
static double OdDbDxfFiler_rdDouble(HandleRef jarg1)
static void OdDbDxfFiler_writeRbSwigExplicitOdDbDxfFiler(HandleRef jarg1, HandleRef jarg2)
static void OdDbDxfFiler_wrUInt8(HandleRef jarg1, int jarg2, byte jarg3)
static void OdDbDxfFiler_writeRb(HandleRef jarg1, HandleRef jarg2)
static void OdDbDxfFiler_wrSubclassMarker(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void OdDbDxfFiler_rdVector2d(HandleRef jarg1, IntPtr jarg2)
static void OdDbDxfFiler_wrVector2dOpt__SWIG_0(HandleRef jarg1, int jarg2, IntPtr jarg3, IntPtr jarg4, int jarg5)
static int OdDbDxfFiler_nextItem(HandleRef jarg1)
static bool OdDbDxfFiler_includesDefaultValuesSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static IntPtr OdDbDxfFiler_queryXSwigExplicitOdDbDxfFiler(HandleRef jarg1, HandleRef jarg2)
static void OdDbDxfFiler_wrUInt32(HandleRef jarg1, int jarg2, UInt32 jarg3)
static void OdDbDxfFiler_wrBool(HandleRef jarg1, int jarg2, bool jarg3)
static void OdDbDxfFiler_writeXDataStart(HandleRef jarg1)
static void OdDbDxfFiler_pushBackItem(HandleRef jarg1)
static void OdDbDxfFiler_wrInt16(HandleRef jarg1, int jarg2, Int16 jarg3)
static void OdDbDxfFiler_wrPoint2dOpt__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static void OdDbDxfFiler_wrName(HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static int OdDbDxfFiler_nextItemSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static bool OdDbDxfFiler_atEOFSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_wrAngle__SWIG_1(HandleRef jarg1, int jarg2, double jarg3)
static void OdDbDxfFiler_wrDoubleOpt__SWIG_2(HandleRef jarg1, int jarg2, double jarg3)
static void OdDbDxfFiler_wrVector2d__SWIG_1(HandleRef jarg1, int jarg2, IntPtr jarg3)
static bool OdDbDxfFiler_atExtendedData(HandleRef jarg1)
static void OdDbDxfFiler_wrUInt32Opt(HandleRef jarg1, int jarg2, UInt32 jarg3, UInt32 jarg4)
static void OdDbDxfFiler_wrAngleOpt__SWIG_1(HandleRef jarg1, int jarg2, double jarg3, double jarg4)
static void OdDbDxfFiler_wrObjectId(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdDbDxfFiler_wrUInt64(HandleRef jarg1, int jarg2, UInt64 jarg3)
static void OdDbDxfFiler_wrString(HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static void OdDbDxfFiler_wrInt16Opt(HandleRef jarg1, int jarg2, Int16 jarg3, Int16 jarg4)
static byte OdDbDxfFiler_rdUInt8(HandleRef jarg1)
static void OdDbDxfFiler_wrPoint2dOpt__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool OdDbDxfFiler_includesDefaultValues(HandleRef jarg1)
static void OdDbDxfFiler_wrInt32(HandleRef jarg1, int jarg2, Int32 jarg3)
static void OdDbDxfFiler_wrBinaryChunk__SWIG_0(HandleRef jarg1, int jarg2, IntPtr jarg3)
static void OdDbDxfFiler_setPrecisionSwigExplicitOdDbDxfFiler(HandleRef jarg1, int jarg2)
static void OdDbDxfFiler_wrUInt64Opt(HandleRef jarg1, int jarg2, UInt64 jarg3, UInt64 jarg4)
static UInt64 OdDbDxfFiler_tell(HandleRef jarg1)
static sbyte OdDbDxfFiler_rdInt8(HandleRef jarg1)
static void OdDbDxfFiler_wrBinaryChunk__SWIG_1(HandleRef jarg1, int jarg2, IntPtr jarg3)
static void OdDbDxfFiler_wrInt8(HandleRef jarg1, int jarg2, sbyte jarg3)
static void OdDbDxfFiler_wrDoubleOpt__SWIG_0(HandleRef jarg1, int jarg2, double jarg3, double jarg4, int jarg5)
static void OdDbDxfFiler_rdBinaryChunk(HandleRef jarg1, IntPtr jarg2)
static bool OdDbDxfFiler_atEmbeddedObjectStartSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void delete_OdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_rdVector3d(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void OdDbDxfFiler_rdPoint3d(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void OdDbDxfFiler_wrVector3d__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdDbDxfFiler_writeXDataStartSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_wrInt32Opt(HandleRef jarg1, int jarg2, Int32 jarg3, Int32 jarg4)
static bool OdDbDxfFiler_atExtendedDataSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static IntPtr OdDbDxfFiler_nextRb(HandleRef jarg1)
static bool OdDbDxfFiler_rdBool(HandleRef jarg1)
static string OdDbDxfFiler_getRealClassName(IntPtr jarg1)
static String OdDbDxfFiler_rdString__SWIG_0(HandleRef jarg1)
static void OdDbDxfFiler_wrPoint3dOpt__SWIG_1(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int OdDbDxfFiler_precision(HandleRef jarg1)
static UInt64 OdDbDxfFiler_tellSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static global::System.IntPtr OdDbDxfFiler_rdHandle(HandleRef jarg1)
static void OdDbDxfFiler_wrInt64Opt(HandleRef jarg1, int jarg2, Int64 jarg3, Int64 jarg4)
static void OdDbDxfFiler_wrDoubleOpt__SWIG_1(HandleRef jarg1, int jarg2, double jarg3, double jarg4)
static void OdDbDxfFiler_wrVector2dOpt__SWIG_1(HandleRef jarg1, int jarg2, IntPtr jarg3, IntPtr jarg4)
static void OdDbDxfFiler_wrStringOpt(HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static int OdDbDxfFiler_precisionSwigExplicitOdDbDxfFiler(HandleRef jarg1)
static void OdDbDxfFiler_wrEmbeddedObjectStart(HandleRef jarg1)
static UInt32 OdDbDxfFiler_rdUInt32(HandleRef jarg1)
static void OdDbDxfFiler_wrVector3dOpt__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static void OdDbDxfFiler_wrDouble__SWIG_1(HandleRef jarg1, int jarg2, double jarg3)
static void OdDbDxfFiler_wrInt8Opt(HandleRef jarg1, int jarg2, sbyte jarg3, sbyte jarg4)
static bool OdDbDxfFiler_atEOF(HandleRef jarg1)
static bool OdDbDxfFiler_atSubclassData(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void OdDbDxfFiler_copyItemSwigExplicitOdDbDxfFiler(HandleRef jarg1, HandleRef jarg2)
static void OdDbDxfFiler_wrPoint3dOpt__SWIG_0(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)