Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
CFxUnitsFormatter.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace PCAD_DOT_NET {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16using Teigha.TD;
17
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
22 public CFxUnitsFormatter(IntPtr cPtr, bool cMemoryOwn) : base(PCADGlobalsPINVOKE.CFxUnitsFormatter_SWIGUpcast(cPtr), cMemoryOwn) {
23 swigCPtr = new HandleRef(this, cPtr);
24 }
25
26 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
27 public static HandleRef getCPtr(CFxUnitsFormatter obj) {
28 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
29 }
30
31 protected override void Dispose(bool disposing) {
32 lock(this) {
33 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
34 if (swigCMemOwn) {
35 swigCMemOwn = false;
37 }
38 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
39 }
40 base.Dispose(disposing);
41 }
42 }
43
44 public void SetFxDatabase(CFxDatabase arg0) {
47 }
48
50 CFxDatabase ret = (CFxDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxDatabase),PCADGlobalsPINVOKE.CFxUnitsFormatter_GetFxDatabase(swigCPtr),false); /*createInt 3_2*/
51
53 return ret;
54}
55
56 public virtual int IntToString(CFxString strResult, int iValue) {
57 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_IntToString(swigCPtr, CFxString.getCPtr(strResult), iValue);
59 return ret;
60 }
61
62 public virtual int StringToInt(out int iResult, CFxString strValue) {
63 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToInt(swigCPtr, out iResult, CFxString.getCPtr(strValue));
65 return ret;
66 }
67
68 public virtual int RealToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin) {
69 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_RealToString__SWIG_0(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision, dimzin);
71 return ret;
72 }
73
74 public virtual int RealToString(CFxString strResult, double dValue, int iUnit, int iPrecision) {
75 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_RealToString__SWIG_1(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision);
77 return ret;
78 }
79
80 public virtual int RealToString(CFxString strResult, double dValue, int iUnit) {
81 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_RealToString__SWIG_2(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit);
83 return ret;
84 }
85
86 public virtual int RealToString(CFxString strResult, double dValue) {
87 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_RealToString__SWIG_3(swigCPtr, CFxString.getCPtr(strResult), dValue);
89 return ret;
90 }
91
92 public virtual int StringToReal(out double pResult, CFxString strValue, bool bNoDistance, bool bAllowArchitectural) {
93 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToReal__SWIG_0(swigCPtr, out pResult, CFxString.getCPtr(strValue), bNoDistance, bAllowArchitectural);
95 return ret;
96 }
97
98 public virtual int StringToReal(out double pResult, CFxString strValue, bool bNoDistance) {
99 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToReal__SWIG_1(swigCPtr, out pResult, CFxString.getCPtr(strValue), bNoDistance);
101 return ret;
102 }
103
104 public virtual int StringToReal(out double pResult, CFxString strValue) {
105 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToReal__SWIG_2(swigCPtr, out pResult, CFxString.getCPtr(strValue));
107 return ret;
108 }
109
110 public virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit, int iPrecision, char /*SIMPLETYPE*/ seperator) {
111 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_0(swigCPtr, CFxString.getCPtr(strResult), OdGePoint3d.getCPtr(ptValue), toPolar, iUnit, iPrecision, seperator /*SIMPLETYPE*/);
113 return ret;
114 }
115
116 public virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit, int iPrecision) {
117 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_1(swigCPtr, CFxString.getCPtr(strResult), OdGePoint3d.getCPtr(ptValue), toPolar, iUnit, iPrecision);
119 return ret;
120 }
121
122 public virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit) {
123 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_2(swigCPtr, CFxString.getCPtr(strResult), OdGePoint3d.getCPtr(ptValue), toPolar, iUnit);
125 return ret;
126 }
127
128 public virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar) {
129 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_3(swigCPtr, CFxString.getCPtr(strResult), OdGePoint3d.getCPtr(ptValue), toPolar);
131 return ret;
132 }
133
134 public virtual int PointToString(CFxString strResult, OdGePoint3d ptValue) {
137 return ret;
138 }
139
140 public virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit, int iPrecision, char /*SIMPLETYPE*/ seperator) {
141 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_5(swigCPtr, CFxString.getCPtr(strResult), OdGePoint2d.getCPtr(ptValue), toPolar, iUnit, iPrecision, seperator /*SIMPLETYPE*/);
143 return ret;
144 }
145
146 public virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit, int iPrecision) {
147 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_6(swigCPtr, CFxString.getCPtr(strResult), OdGePoint2d.getCPtr(ptValue), toPolar, iUnit, iPrecision);
149 return ret;
150 }
151
152 public virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit) {
153 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_7(swigCPtr, CFxString.getCPtr(strResult), OdGePoint2d.getCPtr(ptValue), toPolar, iUnit);
155 return ret;
156 }
157
158 public virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar) {
159 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToString__SWIG_8(swigCPtr, CFxString.getCPtr(strResult), OdGePoint2d.getCPtr(ptValue), toPolar);
161 return ret;
162 }
163
164 public virtual int PointToString(CFxString strResult, OdGePoint2d ptValue) {
167 return ret;
168 }
169
170 public virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS, CFxUnitsFormatter.Flags pUnitFlags, OdGePoint3d pLastPointWCS) {
171 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToPoint__SWIG_0(swigCPtr, OdGePoint3d.getCPtr(geResultWCS), CFxString.getCPtr(strValueUCS), (int)pUnitFlags, OdGePoint3d.getCPtr(pLastPointWCS));
173 return ret;
174 }
175
176 public virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS, CFxUnitsFormatter.Flags pUnitFlags) {
177 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToPoint__SWIG_1(swigCPtr, OdGePoint3d.getCPtr(geResultWCS), CFxString.getCPtr(strValueUCS), (int)pUnitFlags);
179 return ret;
180 }
181
182 public virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS) {
185 return ret;
186 }
187
188 public virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin, bool ignoreANGBASE) {
189 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_0(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision, dimzin, ignoreANGBASE);
191 return ret;
192 }
193
194 public virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin) {
195 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_1(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision, dimzin);
197 return ret;
198 }
199
200 public virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision) {
201 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_2(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision);
203 return ret;
204 }
205
206 public virtual int AngleToString(CFxString strResult, double dValue, int iUnit) {
207 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_3(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit);
209 return ret;
210 }
211
212 public virtual int AngleToString(CFxString strResult, double dValue) {
213 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_4(swigCPtr, CFxString.getCPtr(strResult), dValue);
215 return ret;
216 }
217
218 public virtual int AngleToString(CFxString strResult, double dValue, int iUNITMODE, int iAUPREC, int iDIMZIN, int iAUNITS, int iANGDIR, double dANGBASE) {
219 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_AngleToString__SWIG_5(swigCPtr, CFxString.getCPtr(strResult), dValue, iUNITMODE, iAUPREC, iDIMZIN, iAUNITS, iANGDIR, dANGBASE);
221 return ret;
222 }
223
224 public virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit, bool /*SIMPLETYPE*/ isNegative, bool ignoreANGBASE) {
225 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToAngle__SWIG_0(swigCPtr, out pResult, CFxString.getCPtr(strValue), iUnit, isNegative /*SIMPLETYPE*/, ignoreANGBASE);
227 return ret;
228 }
229
230 public virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit, bool /*SIMPLETYPE*/ isNegative) {
231 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToAngle__SWIG_1(swigCPtr, out pResult, CFxString.getCPtr(strValue), iUnit, isNegative /*SIMPLETYPE*/);
233 return ret;
234 }
235
236 public virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit) {
237 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToAngle__SWIG_2(swigCPtr, out pResult, CFxString.getCPtr(strValue), iUnit);
239 return ret;
240 }
241
242 public virtual int StringToAngle(out double pResult, CFxString strValue) {
243 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToAngle__SWIG_3(swigCPtr, out pResult, CFxString.getCPtr(strValue));
245 return ret;
246 }
247
248 public virtual int StringToAngle(out double pResult, CFxString strValue, int iAUNITS, bool /*SIMPLETYPE*/ isNegative, int iANGDIR, double dANGBASE) {
249 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToAngle__SWIG_4(swigCPtr, out pResult, CFxString.getCPtr(strValue), iAUNITS, isNegative /*SIMPLETYPE*/, iANGDIR, dANGBASE);
251 return ret;
252 }
253
254 public virtual int PointToUCS(OdGePoint3d ptResultUCS, OdGePoint3d ptValueWCS) {
255 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointToUCS(swigCPtr, OdGePoint3d.getCPtr(ptResultUCS), OdGePoint3d.getCPtr(ptValueWCS));
257 return ret;
258 }
259
260 public virtual int PointFromUCS(OdGePoint3d ptResultWCS, OdGePoint3d ptValueUCS) {
261 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_PointFromUCS(swigCPtr, OdGePoint3d.getCPtr(ptResultWCS), OdGePoint3d.getCPtr(ptValueUCS));
263 return ret;
264 }
265
266 public virtual int OrientToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin) {
267 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_OrientToString__SWIG_0(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision, dimzin);
269 return ret;
270 }
271
272 public virtual int OrientToString(CFxString strResult, double dValue, int iUnit, int iPrecision) {
273 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_OrientToString__SWIG_1(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit, iPrecision);
275 return ret;
276 }
277
278 public virtual int OrientToString(CFxString strResult, double dValue, int iUnit) {
279 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_OrientToString__SWIG_2(swigCPtr, CFxString.getCPtr(strResult), dValue, iUnit);
281 return ret;
282 }
283
284 public virtual int OrientToString(CFxString strResult, double dValue) {
287 return ret;
288 }
289
290 public virtual int OrientToString(CFxString strResult, double dValue, int iUNITMODE, int iAUPREC, int iDIMZIN, int iAUNITS, int iANGDIR, double dANGBASE) {
291 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_OrientToString__SWIG_4(swigCPtr, CFxString.getCPtr(strResult), dValue, iUNITMODE, iAUPREC, iDIMZIN, iAUNITS, iANGDIR, dANGBASE);
293 return ret;
294 }
295
296 public virtual int StringToOrient(out double pResult, CFxString strValue, int iUnit) {
297 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToOrient__SWIG_0(swigCPtr, out pResult, CFxString.getCPtr(strValue), iUnit);
299 return ret;
300 }
301
302 public virtual int StringToOrient(out double pResult, CFxString strValue) {
303 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToOrient__SWIG_1(swigCPtr, out pResult, CFxString.getCPtr(strValue));
305 return ret;
306 }
307
308 public virtual int StringToOrient(out double pResult, CFxString strValue, int iAUNITS, int iANGDIR, double dANGBASE) {
309 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_StringToOrient__SWIG_2(swigCPtr, out pResult, CFxString.getCPtr(strValue), iAUNITS, iANGDIR, dANGBASE);
311 return ret;
312 }
313
314 public virtual int StringToColor(OdCmColor iResult, CFxString strValue) {
317 return ret;
318 }
319
320 public virtual int ResBufToString(CFxString strResult, OdResBuf pRb) {
323 return ret;
324 }
325
326 public virtual int ReadDouble(out double pResult, CFxString value, CFxString remainingString) {
327 int ret = PCADGlobalsPINVOKE.CFxUnitsFormatter_ReadDouble__SWIG_0(swigCPtr, out pResult, CFxString.getCPtr(value), CFxString.getCPtr(remainingString));
329 return ret;
330 }
331
332 public virtual int ReadDouble(out double pResult, CFxString value) {
335 return ret;
336 }
337
338 public static int NameToString(CFxString strResult, ref UInt64[] /*OUT_ARRAY*/ pRb) {
339IntPtr p_pRb=Teigha.Core.Helpers.MarshalUInt64FixedArray(pRb);
340 try {
343 return ret;
344 } finally {
345pRb = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_pRb); Marshal.FreeCoTaskMem(p_pRb);
346 }
347 }
348
349 public static int StringToName(SWIGTYPE_p_a_2__uintptr_t pResult, CFxString strValue) {
352 return ret;
353 }
354
355 public virtual int GetUCS2WCS(OdGeMatrix3d ucs2wcs) {
358 return ret;
359 }
360
361 public enum Flags {
362 eNone = 0,
363 eRelativeUnit = 0x0001
364 }
365
366}
367
368}
static HandleRef getCPtr(CFxDatabase obj)
Definition: CFxDatabase.cs:27
static HandleRef getCPtr(CFxString obj)
Definition: CFxString.cs:28
virtual int RealToString(CFxString strResult, double dValue, int iUnit)
virtual int StringToOrient(out double pResult, CFxString strValue, int iUnit)
virtual int StringToReal(out double pResult, CFxString strValue)
virtual int StringToColor(OdCmColor iResult, CFxString strValue)
virtual int OrientToString(CFxString strResult, double dValue, int iUnit, int iPrecision)
virtual int ReadDouble(out double pResult, CFxString value, CFxString remainingString)
virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit, int iPrecision, char seperator)
virtual int OrientToString(CFxString strResult, double dValue, int iUnit)
virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit)
virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar)
virtual int OrientToString(CFxString strResult, double dValue)
virtual int StringToOrient(out double pResult, CFxString strValue)
virtual int ReadDouble(out double pResult, CFxString value)
virtual int AngleToString(CFxString strResult, double dValue, int iUNITMODE, int iAUPREC, int iDIMZIN, int iAUNITS, int iANGDIR, double dANGBASE)
virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS)
virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit, bool isNegative)
virtual int OrientToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin)
virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar)
virtual int GetUCS2WCS(OdGeMatrix3d ucs2wcs)
virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit, int iPrecision)
virtual int StringToOrient(out double pResult, CFxString strValue, int iAUNITS, int iANGDIR, double dANGBASE)
virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS, CFxUnitsFormatter.Flags pUnitFlags, OdGePoint3d pLastPointWCS)
virtual int OrientToString(CFxString strResult, double dValue, int iUNITMODE, int iAUPREC, int iDIMZIN, int iAUNITS, int iANGDIR, double dANGBASE)
virtual int RealToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin)
static int StringToName(SWIGTYPE_p_a_2__uintptr_t pResult, CFxString strValue)
virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin, bool ignoreANGBASE)
virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit)
virtual int RealToString(CFxString strResult, double dValue)
virtual int PointToString(CFxString strResult, OdGePoint3d ptValue)
virtual int PointToString(CFxString strResult, OdGePoint3d ptValue, bool toPolar, int iUnit, int iPrecision)
virtual int RealToString(CFxString strResult, double dValue, int iUnit, int iPrecision)
virtual int AngleToString(CFxString strResult, double dValue)
static int NameToString(CFxString strResult, ref UInt64[] pRb)
virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision, int dimzin)
virtual int IntToString(CFxString strResult, int iValue)
virtual int StringToAngle(out double pResult, CFxString strValue)
virtual int PointFromUCS(OdGePoint3d ptResultWCS, OdGePoint3d ptValueUCS)
override void Dispose(bool disposing)
static HandleRef getCPtr(CFxUnitsFormatter obj)
virtual int StringToReal(out double pResult, CFxString strValue, bool bNoDistance, bool bAllowArchitectural)
virtual int AngleToString(CFxString strResult, double dValue, int iUnit, int iPrecision)
virtual int ResBufToString(CFxString strResult, OdResBuf pRb)
virtual int PointToUCS(OdGePoint3d ptResultUCS, OdGePoint3d ptValueWCS)
virtual int StringToPoint(OdGePoint3d geResultWCS, CFxString strValueUCS, CFxUnitsFormatter.Flags pUnitFlags)
virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit, int iPrecision, char seperator)
virtual int AngleToString(CFxString strResult, double dValue, int iUnit)
virtual int StringToInt(out int iResult, CFxString strValue)
virtual int StringToAngle(out double pResult, CFxString strValue, int iAUNITS, bool isNegative, int iANGDIR, double dANGBASE)
virtual int PointToString(CFxString strResult, OdGePoint2d ptValue)
CFxUnitsFormatter(IntPtr cPtr, bool cMemoryOwn)
void SetFxDatabase(CFxDatabase arg0)
virtual int StringToReal(out double pResult, CFxString strValue, bool bNoDistance)
virtual int PointToString(CFxString strResult, OdGePoint2d ptValue, bool toPolar, int iUnit)
virtual int StringToAngle(out double pResult, CFxString strValue, int iUnit, bool isNegative, bool ignoreANGBASE)
static int CFxUnitsFormatter_OrientToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int CFxUnitsFormatter_StringToReal__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char jarg7)
static void CFxUnitsFormatter_SetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUnitsFormatter_ReadDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxUnitsFormatter_PointToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6)
static int CFxUnitsFormatter_StringToInt(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5)
static int CFxUnitsFormatter_AngleToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6)
static int CFxUnitsFormatter_RealToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int CFxUnitsFormatter_GetUCS2WCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_StringToAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5, bool jarg6)
static int CFxUnitsFormatter_AngleToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static int CFxUnitsFormatter_PointToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static int CFxUnitsFormatter_StringToPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxUnitsFormatter_StringToColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5, int jarg6, double jarg7)
static int CFxUnitsFormatter_PointToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5)
static void delete_CFxUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_PointToUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int CFxUnitsFormatter_NameToString(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxUnitsFormatter_AngleToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static IntPtr CFxUnitsFormatter_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_RealToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static int CFxUnitsFormatter_OrientToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9)
static int CFxUnitsFormatter_AngleToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, bool jarg7)
static int CFxUnitsFormatter_StringToPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int CFxUnitsFormatter_RealToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static int CFxUnitsFormatter_AngleToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9)
static int CFxUnitsFormatter_PointToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static int CFxUnitsFormatter_PointToString__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5)
static int CFxUnitsFormatter_StringToAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_AngleToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static int CFxUnitsFormatter_PointFromUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToReal__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5)
static int CFxUnitsFormatter_OrientToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static int CFxUnitsFormatter_StringToName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_StringToReal__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static int CFxUnitsFormatter_IntToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxUnitsFormatter_ReadDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5, double jarg6)
static int CFxUnitsFormatter_PointToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char jarg7)
static int CFxUnitsFormatter_PointToString__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_RealToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static int CFxUnitsFormatter_OrientToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static int CFxUnitsFormatter_ResBufToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static int CFxUnitsFormatter_StringToAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int CFxUnitsFormatter_OrientToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static int CFxUnitsFormatter_StringToPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static HandleRef getCPtr(OdGeMatrix3d obj)
Definition: OdGeMatrix3d.cs:26
static HandleRef getCPtr(OdGePoint2d obj)
Definition: OdGePoint2d.cs:26
static HandleRef getCPtr(OdGePoint3d obj)
Definition: OdGePoint3d.cs:26
static HandleRef getCPtr(OdCmColor obj)
Definition: OdCmColor.cs:26
static HandleRef getCPtr(OdResBuf obj)
Definition: OdResBuf.cs:26