14 using System.Runtime.InteropServices;
41 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"SWIGRegisterExceptionCallbacks_PCADGlobals")]
55 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"SWIGRegisterExceptionArgumentCallbacks_PCADGlobals")]
61 static void SetPendingApplicationException(
string message) {
64 static void SetPendingArithmeticException(
string message) {
67 static void SetPendingDivideByZeroException(
string message) {
68 SWIGPendingException.Set(
new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
70 static void SetPendingIndexOutOfRangeException(
string message) {
71 SWIGPendingException.Set(
new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
73 static void SetPendingInvalidCastException(
string message) {
74 SWIGPendingException.Set(
new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
76 static void SetPendingInvalidOperationException(
string message) {
77 SWIGPendingException.Set(
new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
79 static void SetPendingIOException(
string message) {
80 SWIGPendingException.Set(
new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
82 static void SetPendingNullReferenceException(
string message) {
83 SWIGPendingException.Set(
new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
85 static void SetPendingOutOfMemoryException(
string message) {
86 SWIGPendingException.Set(
new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
88 static void SetPendingOverflowException(
string message) {
89 SWIGPendingException.Set(
new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
91 static void SetPendingSystemException(
string message) {
92 SWIGPendingException.Set(
new global::System.SystemException(message, SWIGPendingException.Retrieve()));
95 static void SetPendingArgumentException(
string message,
string paramName) {
96 SWIGPendingException.Set(
new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
98 static void SetPendingArgumentNullException(
string message,
string paramName) {
99 global::System.Exception e = SWIGPendingException.Retrieve();
100 if (e !=
null) message = message +
" Inner Exception: " + e.Message;
101 SWIGPendingException.Set(
new global::System.ArgumentNullException(paramName, message));
103 static void SetPendingArgumentOutOfRangeException(
string message,
string paramName) {
104 global::System.Exception e = SWIGPendingException.Retrieve();
105 if (e !=
null) message = message +
" Inner Exception: " + e.Message;
106 SWIGPendingException.Set(
new global::System.ArgumentOutOfRangeException(paramName, message));
109 static SWIGExceptionHelper() {
113 divideByZeroDelegate,
114 indexOutOfRangeDelegate,
116 invalidOperationDelegate,
118 nullReferenceDelegate,
125 argumentNullDelegate,
126 argumentOutOfRangeDelegate);
133 [global::System.ThreadStatic]
134 private static global::System.Exception pendingException =
null;
135 private static int numExceptionsPending = 0;
136 private static global::System.Object exceptionsLock =
null;
140 bool pending =
false;
141 if (numExceptionsPending > 0)
142 if (pendingException !=
null)
148 public static void Set(global::System.Exception e) {
149 if (pendingException !=
null)
150 throw new global::System.ApplicationException(
"FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() +
")", e);
151 pendingException = e;
152 lock(exceptionsLock) {
153 numExceptionsPending++;
157 public static global::System.Exception
Retrieve() {
158 global::System.Exception e =
null;
159 if (numExceptionsPending > 0) {
160 if (pendingException !=
null) {
161 e = pendingException;
162 pendingException =
null;
163 lock(exceptionsLock) {
164 numExceptionsPending--;
172 exceptionsLock =
new global::System.Object();
182 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"SWIGRegisterStringCallback_PCADGlobals")]
185 static string CreateString(
string cString) {
201 class CustomExceptionHelper
204 public delegate
void CustomExceptionDelegate(IntPtr NewContext);
205 static CustomExceptionDelegate customDelegate =
new CustomExceptionDelegate(SetPendingCustomException);
206 [DllImport(
"FxManaged.dll", EntryPoint=
"CustomExceptionRegisterCallback")]
208 void CustomExceptionRegisterCallback(CustomExceptionDelegate customCallback);
209 static void SetPendingCustomException(IntPtr NewContext)
213 static CustomExceptionHelper()
215 CustomExceptionRegisterCallback(customDelegate);
218 static CustomExceptionHelper exceptionHelper =
new CustomExceptionHelper();
223 [
return: global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]
227 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"SWIGRegisterWStringCallback_PCADGlobals")]
230 static string CreateWString([global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]global::System.IntPtr cString) {
231 return global::System.Runtime.InteropServices.Marshal.PtrToStringUni(cString);
242 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorstyle_set")]
245 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorstyle_get")]
248 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorpnt1_set")]
249 public static extern void cursordef_cursorpnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
251 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorpnt1_get")]
254 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorpnt2_set")]
255 public static extern void cursordef_cursorpnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
257 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_cursordef_cursorpnt2_get")]
260 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_cursordef")]
263 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_cursordef")]
264 public static extern void delete_cursordef(global::System.Runtime.InteropServices.HandleRef jarg1);
266 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryA_clen_set")]
267 public static extern void fdt_binaryA_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
269 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryA_clen_get")]
272 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryA_buf_set")]
273 public static extern void fdt_binaryA_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
275 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryA_buf_get")]
278 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_binaryA")]
281 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_binaryA")]
282 public static extern void delete_fdt_binaryA(global::System.Runtime.InteropServices.HandleRef jarg1);
284 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rreal_set")]
285 public static extern void fdt_u_valA_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
287 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rreal_get")]
290 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rpoint_set")]
291 public static extern void fdt_u_valA_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
293 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rpoint_get")]
296 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rint_set")]
297 public static extern void fdt_u_valA_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
299 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rint_get")]
302 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rlong_set")]
303 public static extern void fdt_u_valA_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
305 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rlong_get")]
308 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rstring_set")]
311 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rstring_get")]
314 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rlname_set")]
315 public static extern void fdt_u_valA_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
317 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rlname_get")]
318 public static extern global::System.IntPtr
fdt_u_valA_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
320 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rbinary_set")]
321 public static extern void fdt_u_valA_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
323 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valA_rbinary_get")]
324 public static extern global::System.IntPtr
fdt_u_valA_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
326 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_u_valA")]
329 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_u_valA")]
330 public static extern void delete_fdt_u_valA(global::System.Runtime.InteropServices.HandleRef jarg1);
332 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_rbnext_set")]
333 public static extern void fdt_resbufA_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
335 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_rbnext_get")]
336 public static extern global::System.IntPtr
fdt_resbufA_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
338 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_restype_set")]
341 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_restype_get")]
344 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_resval_set")]
345 public static extern void fdt_resbufA_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
347 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufA_resval_get")]
348 public static extern global::System.IntPtr
fdt_resbufA_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
350 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_resbufA")]
353 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_resbufA")]
354 public static extern void delete_fdt_resbufA(global::System.Runtime.InteropServices.HandleRef jarg1);
356 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryW_clen_set")]
357 public static extern void fdt_binaryW_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
359 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryW_clen_get")]
362 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryW_buf_set")]
363 public static extern void fdt_binaryW_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
365 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_binaryW_buf_get")]
368 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_binaryW")]
371 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_binaryW")]
372 public static extern void delete_fdt_binaryW(global::System.Runtime.InteropServices.HandleRef jarg1);
374 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rreal_set")]
375 public static extern void fdt_u_valW_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
377 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rreal_get")]
380 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rpoint_set")]
381 public static extern void fdt_u_valW_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
383 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rpoint_get")]
386 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rint_set")]
387 public static extern void fdt_u_valW_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
389 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rint_get")]
392 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rlong_set")]
393 public static extern void fdt_u_valW_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
395 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rlong_get")]
398 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rstring_set")]
399 public static extern void fdt_u_valW_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
401 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rstring_get")]
402 [
return: MarshalAs(UnmanagedType.LPWStr)]
405 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rlname_set")]
406 public static extern void fdt_u_valW_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
408 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rlname_get")]
409 public static extern global::System.IntPtr
fdt_u_valW_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
411 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rbinary_set")]
412 public static extern void fdt_u_valW_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
414 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_rbinary_get")]
415 public static extern global::System.IntPtr
fdt_u_valW_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
417 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_mnInt64_set")]
420 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_u_valW_mnInt64_get")]
423 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_u_valW")]
426 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_u_valW")]
427 public static extern void delete_fdt_u_valW(global::System.Runtime.InteropServices.HandleRef jarg1);
429 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_rbnext_set")]
430 public static extern void fdt_resbufW_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
432 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_rbnext_get")]
433 public static extern global::System.IntPtr
fdt_resbufW_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
435 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_restype_set")]
438 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_restype_get")]
441 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_resval_set")]
442 public static extern void fdt_resbufW_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
444 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_resbufW_resval_get")]
445 public static extern global::System.IntPtr
fdt_resbufW_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
447 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_resbufW")]
450 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_resbufW")]
451 public static extern void delete_fdt_resbufW(global::System.Runtime.InteropServices.HandleRef jarg1);
453 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szMacro_set")]
456 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szMacro_get")]
459 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabSectionID_set")]
462 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabSectionID_get")]
465 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabMenuID_set")]
468 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabMenuID_get")]
471 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabRow_set")]
474 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabRow_get")]
477 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabColumn_set")]
480 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabColumn_get")]
483 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_tablet_recA")]
486 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_tablet_recA")]
489 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szMacro_set")]
490 public static extern void fdt_tablet_recW_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
492 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szMacro_get")]
495 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabSectionID_set")]
498 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabSectionID_get")]
501 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabMenuID_set")]
502 public static extern void fdt_tablet_recW_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
504 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabMenuID_get")]
507 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabRow_set")]
510 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabRow_get")]
513 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabColumn_set")]
516 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabColumn_get")]
519 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_tablet_recW")]
522 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_tablet_recW")]
525 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_First_Date_set")]
526 public static extern void FDT_FLX_INFOA_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
528 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_First_Date_get")]
531 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_Save_Date_set")]
532 public static extern void FDT_FLX_INFOA_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
534 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_Save_Date_get")]
537 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szProjName_set")]
540 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szProjName_get")]
543 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrNumber_set")]
546 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrNumber_get")]
549 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrName_set")]
552 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrName_get")]
555 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDraftsman_set")]
558 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDraftsman_get")]
561 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem1_set")]
564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem1_get")]
567 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem2_set")]
570 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem2_get")]
573 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem3_set")]
576 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem3_get")]
579 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_FLX_INFOA")]
582 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFOA")]
585 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_First_Date_set")]
586 public static extern void FDT_FLX_INFOW_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_First_Date_get")]
591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_Save_Date_set")]
592 public static extern void FDT_FLX_INFOW_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_Save_Date_get")]
597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szProjName_set")]
598 public static extern void FDT_FLX_INFOW_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szProjName_get")]
603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrNumber_set")]
604 public static extern void FDT_FLX_INFOW_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrNumber_get")]
609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrName_set")]
610 public static extern void FDT_FLX_INFOW_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrName_get")]
615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDraftsman_set")]
616 public static extern void FDT_FLX_INFOW_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDraftsman_get")]
621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem1_set")]
622 public static extern void FDT_FLX_INFOW_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem1_get")]
627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem2_set")]
628 public static extern void FDT_FLX_INFOW_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem2_get")]
633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem3_set")]
634 public static extern void FDT_FLX_INFOW_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem3_get")]
639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_FLX_INFOW")]
642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFOW")]
645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_nColor_set")]
648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_nColor_get")]
651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_Pnt_set")]
652 public static extern void FDT_GENOUT_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_Pnt_get")]
657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_GENOUT_POINT")]
660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_POINT")]
663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nColor_set")]
666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nColor_get")]
669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nLineType_set")]
672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nLineType_get")]
675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt1_set")]
676 public static extern void FDT_GENOUT_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt1_get")]
681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt2_set")]
682 public static extern void FDT_GENOUT_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt2_get")]
687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_GENOUT_LINE")]
690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_LINE")]
693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nColor_set")]
696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nColor_get")]
699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nLineType_set")]
702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nLineType_get")]
705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nFlags_set")]
708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nFlags_get")]
711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nPnts_set")]
714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nPnts_get")]
717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_Pnts_set")]
718 public static extern void FDT_GENOUT_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_Pnts_get")]
723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_GENOUT_AREA")]
726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_AREA")]
729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szMacro_set")]
732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szMacro_get")]
735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabSectionID_set")]
738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabSectionID_get")]
741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabMenuID_set")]
744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabMenuID_get")]
747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabRow_set")]
750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabRow_get")]
753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabColumn_set")]
756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabColumn_get")]
759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_tablet_rec")]
762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_tablet_rec")]
765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_First_Date_set")]
766 public static extern void FDT_FLX_INFO_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_First_Date_get")]
771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_Save_Date_set")]
772 public static extern void FDT_FLX_INFO_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_Save_Date_get")]
777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szProjName_set")]
780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szProjName_get")]
783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrNumber_set")]
786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrNumber_get")]
789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrName_set")]
792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrName_get")]
795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDraftsman_set")]
798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDraftsman_get")]
801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem1_set")]
804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem1_get")]
807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem2_set")]
810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem2_get")]
813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem3_set")]
816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem3_get")]
819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FDT_FLX_INFO")]
822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFO")]
825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hWnd_set")]
826 public static extern void fdt_VPORT_EXT_INFO_hWnd_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hWnd_get")]
831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hDc_set")]
832 public static extern void fdt_VPORT_EXT_INFO_hDc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hDc_get")]
837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatWcsToVcs_set")]
840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatWcsToVcs_get")]
843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatVcsToWcs_set")]
846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatVcsToWcs_get")]
849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMin_set")]
850 public static extern void fdt_VPORT_EXT_INFO_VportMin_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMin_get")]
855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMax_set")]
856 public static extern void fdt_VPORT_EXT_INFO_VportMax_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMax_get")]
861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinWidth_set")]
864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinWidth_get")]
867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinHeight_set")]
870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinHeight_get")]
873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hPalette_set")]
874 public static extern void fdt_VPORT_EXT_INFO_hPalette_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hPalette_get")]
879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_fdt_VPORT_EXT_INFO")]
882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_fdt_VPORT_EXT_INFO")]
885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_DEVPOINT_x_set")]
886 public static extern void DEVPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_DEVPOINT_x_get")]
889 public static extern int DEVPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_DEVPOINT_y_set")]
892 public static extern void DEVPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_DEVPOINT_y_get")]
895 public static extern int DEVPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
897 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_DEVPOINT")]
900 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_DEVPOINT")]
901 public static extern void delete_DEVPOINT(global::System.Runtime.InteropServices.HandleRef jarg1);
903 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_WORLDPOINT_x_set")]
904 public static extern void WORLDPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
906 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_WORLDPOINT_x_get")]
907 public static extern double WORLDPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
909 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_WORLDPOINT_y_set")]
910 public static extern void WORLDPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
912 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_WORLDPOINT_y_get")]
913 public static extern double WORLDPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
915 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_WORLDPOINT")]
918 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_WORLDPOINT")]
919 public static extern void delete_WORLDPOINT(global::System.Runtime.InteropServices.HandleRef jarg1);
921 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_x_set")]
922 public static extern void IMAGE_PNT_3D_x_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
924 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_x_get")]
925 public static extern double IMAGE_PNT_3D_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
927 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_y_set")]
928 public static extern void IMAGE_PNT_3D_y_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
930 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_y_get")]
931 public static extern double IMAGE_PNT_3D_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
933 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_z_set")]
934 public static extern void IMAGE_PNT_3D_z_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
936 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_z_get")]
937 public static extern double IMAGE_PNT_3D_z_get(global::System.Runtime.InteropServices.HandleRef jarg1);
939 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_IMAGE_PNT_3D")]
942 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_IMAGE_PNT_3D")]
945 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_POINT_Pnt_set")]
946 public static extern void P_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
948 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_POINT_Pnt_get")]
949 public static extern global::System.IntPtr
P_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1);
951 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_POINT")]
954 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_POINT")]
955 public static extern void delete_P_POINT(global::System.Runtime.InteropServices.HandleRef jarg1);
957 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_LINE_Pnt1_set")]
958 public static extern void P_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
960 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_LINE_Pnt1_get")]
961 public static extern global::System.IntPtr
P_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
963 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_LINE_Pnt2_set")]
964 public static extern void P_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
966 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_LINE_Pnt2_get")]
967 public static extern global::System.IntPtr
P_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
969 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_LINE")]
972 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_LINE")]
973 public static extern void delete_P_LINE(global::System.Runtime.InteropServices.HandleRef jarg1);
975 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_AREA_nPnts_set")]
976 public static extern void P_FILL_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
978 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_AREA_nPnts_get")]
981 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_AREA_Pnts_set")]
982 public static extern void P_FILL_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
984 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_AREA_Pnts_get")]
985 public static extern global::System.IntPtr
P_FILL_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
987 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_FILL_AREA")]
990 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_FILL_AREA")]
991 public static extern void delete_P_FILL_AREA(global::System.Runtime.InteropServices.HandleRef jarg1);
993 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_Pnts_set")]
994 public static extern void P_FILL_POLY_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
996 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_Pnts_get")]
997 public static extern global::System.IntPtr
P_FILL_POLY_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
999 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_PolyCounts_set")]
1002 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_PolyCounts_get")]
1005 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_nCount_set")]
1008 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_FILL_POLY_nCount_get")]
1011 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_FILL_POLY")]
1014 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_FILL_POLY")]
1017 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_hImage_set")]
1018 public static extern void P_IMAGE_hImage_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1020 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_hImage_get")]
1023 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_LlDevicePoint_set")]
1024 public static extern void P_IMAGE_LlDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1026 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_LlDevicePoint_get")]
1029 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_UrDevicePoint_set")]
1030 public static extern void P_IMAGE_UrDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1032 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_UrDevicePoint_get")]
1035 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_LlWorldPoint_set")]
1036 public static extern void P_IMAGE_LlWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1038 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_LlWorldPoint_get")]
1041 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_UrWorldPoint_set")]
1042 public static extern void P_IMAGE_UrWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1044 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_IMAGE_UrWorldPoint_get")]
1047 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_IMAGE")]
1050 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_IMAGE")]
1051 public static extern void delete_P_IMAGE(global::System.Runtime.InteropServices.HandleRef jarg1);
1053 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved1_set")]
1056 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved1_get")]
1059 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved2_set")]
1062 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved2_get")]
1065 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_LlObjPoint_set")]
1066 public static extern void P_OLEOBJ_LlObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1068 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_LlObjPoint_get")]
1071 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_UrObjPoint_set")]
1072 public static extern void P_OLEOBJ_UrObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1074 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_UrObjPoint_get")]
1077 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_LlClipPoint_set")]
1078 public static extern void P_OLEOBJ_LlClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1080 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_LlClipPoint_get")]
1083 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_UrClipPoint_set")]
1084 public static extern void P_OLEOBJ_UrClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1086 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_P_OLEOBJ_UrClipPoint_get")]
1089 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_P_OLEOBJ")]
1092 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_P_OLEOBJ")]
1093 public static extern void delete_P_OLEOBJ(global::System.Runtime.InteropServices.HandleRef jarg1);
1095 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINTREC_Type_set")]
1096 public static extern void PRINTREC_Type_set(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2);
1098 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINTREC_Type_get")]
1099 public static extern char PRINTREC_Type_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1101 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINTREC_nColor_set")]
1102 public static extern void PRINTREC_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
1104 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINTREC_nColor_get")]
1107 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_PRINTREC")]
1110 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_PRINTREC")]
1111 public static extern void delete_PRINTREC(global::System.Runtime.InteropServices.HandleRef jarg1);
1113 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_LowLeCorn_set")]
1114 public static extern void PRINT_EXT_INFO_LowLeCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 2)]
double[] jarg2);
1116 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_LowLeCorn_get")]
1119 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_UppRiCorn_set")]
1120 public static extern void PRINT_EXT_INFO_UppRiCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 2)]
double[] jarg2);
1122 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_UppRiCorn_get")]
1125 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevWidth_set")]
1128 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevWidth_get")]
1131 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevHeight_set")]
1134 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevHeight_get")]
1137 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_PRINT_EXT_INFO")]
1140 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_PRINT_EXT_INFO")]
1143 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_dialog_set")]
1144 public static extern void dcl_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1146 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_dialog_get")]
1149 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_tile_set")]
1150 public static extern void dcl_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1152 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_tile_get")]
1155 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_value_set")]
1158 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_value_get")]
1161 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_client_data_set")]
1164 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_client_data_get")]
1167 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_reason_set")]
1170 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_reason_get")]
1173 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_x_set")]
1176 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_x_get")]
1179 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_y_set")]
1182 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetA_y_get")]
1185 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dcl_callback_packetA")]
1188 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dcl_callback_packetA")]
1191 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_dialog_set")]
1192 public static extern void dcl_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1194 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_dialog_get")]
1197 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_tile_set")]
1198 public static extern void dcl_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1200 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_tile_get")]
1203 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_value_set")]
1206 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_value_get")]
1207 [
return: MarshalAs(UnmanagedType.LPWStr)]
1210 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_client_data_set")]
1213 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_client_data_get")]
1216 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_reason_set")]
1219 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_reason_get")]
1222 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_x_set")]
1225 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_x_get")]
1228 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_y_set")]
1231 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_callback_packetW_y_get")]
1234 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dcl_callback_packetW")]
1237 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dcl_callback_packetW")]
1240 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_binary_clen_set")]
1241 public static extern void dcl_binary_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
1243 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_binary_clen_get")]
1246 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_binary_buf_set")]
1247 public static extern void dcl_binary_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1249 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_binary_buf_get")]
1252 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dcl_binary")]
1255 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dcl_binary")]
1256 public static extern void delete_dcl_binary(global::System.Runtime.InteropServices.HandleRef jarg1);
1258 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rreal_set")]
1259 public static extern void dcl_u_val_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
1261 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rreal_get")]
1264 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rpoint_set")]
1265 public static extern void dcl_u_val_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
1267 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rpoint_get")]
1270 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rint_set")]
1271 public static extern void dcl_u_val_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2);
1273 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rint_get")]
1276 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rstring_set")]
1277 public static extern void dcl_u_val_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1279 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rstring_get")]
1280 [
return: MarshalAs(UnmanagedType.LPWStr)]
1283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rlname_set")]
1284 public static extern void dcl_u_val_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rlname_get")]
1287 public static extern global::System.IntPtr
dcl_u_val_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rlong_set")]
1290 public static extern void dcl_u_val_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2);
1292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rlong_get")]
1295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rbinary_set")]
1296 public static extern void dcl_u_val_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_u_val_rbinary_get")]
1299 public static extern global::System.IntPtr
dcl_u_val_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dcl_u_val")]
1304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dcl_u_val")]
1305 public static extern void delete_dcl_u_val(global::System.Runtime.InteropServices.HandleRef jarg1);
1307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_rbnext_set")]
1308 public static extern void dcl_resbuf_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_rbnext_get")]
1311 public static extern global::System.IntPtr
dcl_resbuf_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_restype_set")]
1316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_restype_get")]
1319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_resval_set")]
1320 public static extern void dcl_resbuf_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dcl_resbuf_resval_get")]
1323 public static extern global::System.IntPtr
dcl_resbuf_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dcl_resbuf")]
1328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dcl_resbuf")]
1329 public static extern void delete_dcl_resbuf(global::System.Runtime.InteropServices.HandleRef jarg1);
1331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_dialog_set")]
1334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_dialog_get")]
1337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_tile_set")]
1340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_tile_get")]
1343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_key_set")]
1346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_key_get")]
1349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_value_set")]
1352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_value_get")]
1355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_client_data_set")]
1358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_client_data_get")]
1361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_reason_set")]
1364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_reason_get")]
1367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_x_set")]
1370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_x_get")]
1373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_y_set")]
1376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetA_y_get")]
1379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dlg_callback_packetA")]
1382 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dlg_callback_packetA")]
1385 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_dialog_set")]
1388 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_dialog_get")]
1391 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_tile_set")]
1394 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_tile_get")]
1397 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_key_set")]
1398 public static extern void dlg_callback_packetW_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1400 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_key_get")]
1403 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_value_set")]
1406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_value_get")]
1407 [
return: MarshalAs(UnmanagedType.LPWStr)]
1410 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_client_data_set")]
1413 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_client_data_get")]
1416 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_reason_set")]
1419 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_reason_get")]
1422 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_x_set")]
1425 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_x_get")]
1428 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_y_set")]
1431 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_dlg_callback_packetW_y_get")]
1434 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_dlg_callback_packetW")]
1437 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_dlg_callback_packetW")]
1440 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxAPI")]
1441 public static extern void delete_CFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1);
1443 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_regappA")]
1444 public static extern int CFxAPI_fdt_regappA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1446 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_regappW")]
1447 public static extern int CFxAPI_fdt_regappW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1449 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registerA")]
1450 public static extern int CFxAPI_fdt_registerA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
1452 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registerW")]
1453 public static extern int CFxAPI_fdt_registerW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1455 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_paramA")]
1456 public static extern int CFxAPI_fdt_register_paramA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1458 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_paramW")]
1459 public static extern int CFxAPI_fdt_register_paramW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1461 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_funcA")]
1462 public static extern int CFxAPI_fdt_register_funcA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1464 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_funcW")]
1465 public static extern int CFxAPI_fdt_register_funcW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1467 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_unregisterA")]
1470 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_unregisterW")]
1471 public static extern int CFxAPI_fdt_unregisterW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1473 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcfgA")]
1474 public static extern int CFxAPI_fdt_getcfgA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4);
1476 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcfgW")]
1477 public static extern int CFxAPI_fdt_getcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
1479 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcfgA")]
1480 public static extern int CFxAPI_fdt_setcfgA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
1482 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcfgW")]
1483 public static extern int CFxAPI_fdt_setcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1485 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadA")]
1486 public static extern int CFxAPI_fdt_loadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1488 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadW")]
1489 public static extern int CFxAPI_fdt_loadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1491 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xloadA")]
1492 public static extern int CFxAPI_fdt_xloadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1494 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xloadW")]
1495 public static extern int CFxAPI_fdt_xloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1497 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xunloadA")]
1498 public static extern int CFxAPI_fdt_xunloadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1500 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xunloadW")]
1501 public static extern int CFxAPI_fdt_xunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1503 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getargsA")]
1504 public static extern global::System.IntPtr
CFxAPI_fdt_getargsA(global::System.Runtime.InteropServices.HandleRef jarg1);
1506 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getargsW")]
1507 public static extern global::System.IntPtr
CFxAPI_fdt_getargsW(global::System.Runtime.InteropServices.HandleRef jarg1);
1509 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retint")]
1510 public static extern int CFxAPI_fdt_retint(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1512 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retreal")]
1513 public static extern int CFxAPI_fdt_retreal(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
1515 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retpoint")]
1516 public static extern int CFxAPI_fdt_retpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
1518 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retnil")]
1521 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_rett")]
1522 public static extern int CFxAPI_fdt_rett(global::System.Runtime.InteropServices.HandleRef jarg1);
1524 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvoid")]
1527 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retstrA")]
1528 public static extern int CFxAPI_fdt_retstrA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1530 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retstrW")]
1531 public static extern int CFxAPI_fdt_retstrW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1533 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retname")]
1534 public static extern int CFxAPI_fdt_retname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1536 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retlistA")]
1537 public static extern int CFxAPI_fdt_retlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1539 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retlistW")]
1540 public static extern int CFxAPI_fdt_retlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1542 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvalA")]
1543 public static extern int CFxAPI_fdt_retvalA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1545 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvalW")]
1546 public static extern int CFxAPI_fdt_retvalW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1548 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_invokeA")]
1549 public static extern int CFxAPI_fdt_invokeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1551 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_invokeW")]
1552 public static extern int CFxAPI_fdt_invokeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1554 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_invoke_lispA")]
1555 public static extern int CFxAPI_fdt_invoke_lispA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1557 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_invoke_lispW")]
1558 public static extern int CFxAPI_fdt_invoke_lispW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1560 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadedA")]
1561 public static extern global::System.IntPtr
CFxAPI_fdt_loadedA(global::System.Runtime.InteropServices.HandleRef jarg1);
1563 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadedW")]
1564 public static extern global::System.IntPtr
CFxAPI_fdt_loadedW(global::System.Runtime.InteropServices.HandleRef jarg1);
1566 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxloadA")]
1567 public static extern int CFxAPI_fdt_drxloadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1569 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxloadW")]
1570 public static extern int CFxAPI_fdt_drxloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1572 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxunloadA")]
1575 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxunloadW")]
1576 public static extern int CFxAPI_fdt_drxunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1578 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsymA")]
1579 public static extern int CFxAPI_fdt_getsymA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1581 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsymW")]
1582 public static extern int CFxAPI_fdt_getsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1584 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_putsymA")]
1585 public static extern int CFxAPI_fdt_putsymA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1587 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_putsymW")]
1588 public static extern int CFxAPI_fdt_putsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1590 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getininameA")]
1591 public static extern int CFxAPI_fdt_getininameA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
1593 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getininameW")]
1594 public static extern int CFxAPI_fdt_getininameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
1596 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palgetnameslistA")]
1597 public static extern int CFxAPI_fdt_palgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1599 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palgetnameslistW")]
1600 public static extern int CFxAPI_fdt_palgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1602 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palloadA")]
1603 public static extern int CFxAPI_fdt_palloadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1605 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palloadW")]
1606 public static extern int CFxAPI_fdt_palloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1608 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palunloadA")]
1611 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palunloadW")]
1612 public static extern int CFxAPI_fdt_palunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1614 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palshowA")]
1615 public static extern int CFxAPI_fdt_palshowA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1617 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palshowW")]
1618 public static extern int CFxAPI_fdt_palshowW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1620 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palhideA")]
1621 public static extern int CFxAPI_fdt_palhideA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1623 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palhideW")]
1624 public static extern int CFxAPI_fdt_palhideW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1626 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_palopendlg")]
1629 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixgetnameslistA")]
1632 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixgetnameslistW")]
1635 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0")]
1638 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1")]
1641 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0")]
1644 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1")]
1647 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarremoveA")]
1650 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarremoveW")]
1653 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstategetA")]
1656 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstategetW")]
1659 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstatesetA")]
1662 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstatesetW")]
1665 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstategetA")]
1668 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstategetW")]
1669 public static extern int CFxAPI_fdt_toolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3);
1671 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstatesetA")]
1674 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstatesetW")]
1675 public static extern int CFxAPI_fdt_toolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
1677 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstategetA")]
1680 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstategetW")]
1683 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstatesetA")]
1686 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstatesetW")]
1689 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_all_toolbars_visibleA")]
1692 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_all_toolbars_visibleW")]
1695 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbar_existsA")]
1698 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbar_existsW")]
1699 public static extern int CFxAPI_fdt_toolbar_existsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
bool jarg3);
1701 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstateA")]
1702 public static extern int CFxAPI_fdt_toolbarstateA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3,
int jarg4,
int jarg5,
int jarg6,
int jarg7);
1704 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstateW")]
1705 public static extern int CFxAPI_fdt_toolbarstateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3,
int jarg4,
int jarg5,
int jarg6,
int jarg7);
1707 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetfirstA")]
1708 public static extern int CFxAPI_fdt_ssgetfirstA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1710 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetfirstW")]
1711 public static extern int CFxAPI_fdt_ssgetfirstW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1713 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_sssetfirst")]
1714 public static extern int CFxAPI_fdt_sssetfirst(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3);
1716 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_alertA")]
1717 public static extern int CFxAPI_fdt_alertA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1719 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_alertW")]
1720 public static extern int CFxAPI_fdt_alertW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1722 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_failA")]
1723 public static extern void CFxAPI_fdt_failA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1725 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_failW")]
1726 public static extern void CFxAPI_fdt_failW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1728 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_newrbA")]
1729 public static extern global::System.IntPtr
CFxAPI_fdt_newrbA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1731 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_newrbW")]
1732 public static extern global::System.IntPtr
CFxAPI_fdt_newrbW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1734 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_copyresbufA")]
1735 public static extern int CFxAPI_fdt_copyresbufA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1737 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_copyresbufW")]
1738 public static extern int CFxAPI_fdt_copyresbufW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1740 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_relrbA")]
1741 public static extern int CFxAPI_fdt_relrbA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1743 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_relrbW")]
1744 public static extern int CFxAPI_fdt_relrbW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1746 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_cmdA")]
1747 public static extern int CFxAPI_fdt_cmdA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1749 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_cmdW")]
1750 public static extern int CFxAPI_fdt_cmdW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1752 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_initdialog")]
1755 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_actcmdA")]
1756 public static extern int CFxAPI_fdt_actcmdA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1758 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_actcmdW")]
1759 public static extern int CFxAPI_fdt_actcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1761 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delcmdA")]
1762 public static extern int CFxAPI_fdt_delcmdA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1764 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delcmdW")]
1765 public static extern int CFxAPI_fdt_delcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1767 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcnameA")]
1768 public static extern int CFxAPI_fdt_getcnameA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, [In, MarshalAs(UnmanagedType.LPArray)]
char[] jarg3);
1770 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcnameW")]
1771 public static extern int CFxAPI_fdt_getcnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1773 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_snvalidA")]
1774 public static extern int CFxAPI_fdt_snvalidA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
1776 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_snvalidW")]
1777 public static extern int CFxAPI_fdt_snvalidW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
1779 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_fgetenvA")]
1780 public static extern int CFxAPI_fdt_fgetenvA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
1782 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_fgetenvW")]
1783 public static extern int CFxAPI_fdt_fgetenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1785 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getenvA")]
1786 public static extern int CFxAPI_fdt_getenvA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4,
int jarg5,
string jarg6);
1788 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getenvW")]
1789 public static extern int CFxAPI_fdt_getenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
1791 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setenvA")]
1792 public static extern int CFxAPI_fdt_setenvA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
1794 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setenvW")]
1795 public static extern int CFxAPI_fdt_setenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1797 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_strmallocA")]
1800 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_strfreeA")]
1801 public static extern void CFxAPI_fdt_strfreeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1803 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_strfreeW")]
1804 public static extern void CFxAPI_fdt_strfreeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1806 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_malloc")]
1807 public static extern IntPtr
CFxAPI_fdt_malloc(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1809 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_free")]
1810 public static extern void CFxAPI_fdt_free(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1812 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isalpha")]
1813 public static extern int CFxAPI_fdt_isalpha(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1815 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isupper")]
1816 public static extern int CFxAPI_fdt_isupper(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1818 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_islower")]
1819 public static extern int CFxAPI_fdt_islower(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1821 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isdigit")]
1822 public static extern int CFxAPI_fdt_isdigit(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1824 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isxdigit")]
1825 public static extern int CFxAPI_fdt_isxdigit(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1827 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isspace")]
1828 public static extern int CFxAPI_fdt_isspace(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1830 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ispunct")]
1831 public static extern int CFxAPI_fdt_ispunct(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1833 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isalnum")]
1834 public static extern int CFxAPI_fdt_isalnum(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1836 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isprint")]
1837 public static extern int CFxAPI_fdt_isprint(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1839 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isgraph")]
1840 public static extern int CFxAPI_fdt_isgraph(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1842 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_iscntrl")]
1843 public static extern int CFxAPI_fdt_iscntrl(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1845 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_toupper")]
1846 public static extern int CFxAPI_fdt_toupper(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1848 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tolower")]
1849 public static extern int CFxAPI_fdt_tolower(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
1851 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdti_notify")]
1852 public static extern int CFxAPI_fdti_notify(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1854 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdti_notify_short")]
1857 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setvarA")]
1858 public static extern int CFxAPI_fdt_setvarA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1860 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setvarW")]
1861 public static extern int CFxAPI_fdt_setvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1863 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getvarA")]
1864 public static extern int CFxAPI_fdt_getvarA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1866 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getvarW")]
1867 public static extern int CFxAPI_fdt_getvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1869 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_cvunitA")]
1870 public static extern int CFxAPI_fdt_cvunitA(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
string jarg3,
string jarg4, out
double jarg5);
1872 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_cvunitW")]
1873 public static extern int CFxAPI_fdt_cvunitW(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, out
double jarg5);
1875 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtosA")]
1876 public static extern int CFxAPI_fdt_angtosA(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
int jarg4,
string jarg5, uint jarg6);
1878 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtosW")]
1879 public static extern int CFxAPI_fdt_angtosW(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
int jarg4, [MarshalAs(UnmanagedType.LPWStr)]
string jarg5, uint jarg6);
1881 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_rtosA")]
1882 public static extern int CFxAPI_fdt_rtosA(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
int jarg4,
string jarg5, uint jarg6);
1884 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_rtosW")]
1885 public static extern int CFxAPI_fdt_rtosW(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
int jarg4, [MarshalAs(UnmanagedType.LPWStr)]
string jarg5, uint jarg6);
1887 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtofA")]
1888 public static extern int CFxAPI_fdt_angtofA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, out
double jarg4);
1890 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtofW")]
1891 public static extern int CFxAPI_fdt_angtofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, out
double jarg4);
1893 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_distofA")]
1894 public static extern int CFxAPI_fdt_distofA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, out
double jarg4);
1896 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_distofW")]
1897 public static extern int CFxAPI_fdt_distofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, out
double jarg4);
1899 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_atofA")]
1900 public static extern int CFxAPI_fdt_atofA(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
double jarg3);
1902 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_atofW")]
1903 public static extern int CFxAPI_fdt_atofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
double jarg3);
1905 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_wcmatchA")]
1906 public static extern int CFxAPI_fdt_wcmatchA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
1908 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_wcmatchW")]
1909 public static extern int CFxAPI_fdt_wcmatchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
1911 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_promptA")]
1912 public static extern int CFxAPI_fdt_promptA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
1914 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_promptW")]
1915 public static extern int CFxAPI_fdt_promptW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
1917 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_graphscr")]
1920 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_textscr")]
1923 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_textpage")]
1926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_cleartextscr")]
1929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_activate_progress_barA")]
1932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_activate_progress_barW")]
1935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_hide_progress_bar")]
1938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_set_progress_state")]
1941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_selcheck")]
1942 public static extern int CFxAPI_fdt_selcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetA")]
1945 public static extern int CFxAPI_fdt_ssgetA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6);
1947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetW")]
1948 public static extern int CFxAPI_fdt_ssgetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6);
1950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssfree")]
1951 public static extern int CFxAPI_fdt_ssfree(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_sslength")]
1954 public static extern int CFxAPI_fdt_sslength(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out
int jarg3);
1956 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssadd__SWIG_0")]
1957 public static extern int CFxAPI_fdt_ssadd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4,
bool jarg5);
1959 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssadd__SWIG_1")]
1960 public static extern int CFxAPI_fdt_ssadd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4);
1962 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssname")]
1963 public static extern int CFxAPI_fdt_ssname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3, IntPtr jarg4);
1965 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexA__SWIG_0")]
1966 public static extern int CFxAPI_fdt_ssnamexA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, uint jarg5);
1968 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexA__SWIG_1")]
1969 public static extern int CFxAPI_fdt_ssnamexA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4);
1971 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexW__SWIG_0")]
1972 public static extern int CFxAPI_fdt_ssnamexW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, uint jarg5);
1974 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexW__SWIG_1")]
1975 public static extern int CFxAPI_fdt_ssnamexW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4);
1977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdbnr")]
1978 public static extern int CFxAPI_fdt_ssdbnr(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out
int jarg3);
1980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssmemb")]
1981 public static extern int CFxAPI_fdt_ssmemb(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3);
1983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdel")]
1984 public static extern int CFxAPI_fdt_ssdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3);
1986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdel_all")]
1987 public static extern int CFxAPI_fdt_ssdel_all(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xformss")]
1990 public static extern int CFxAPI_fdt_xformss(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_norm_dxfcode")]
1995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdti_ssinc")]
1996 public static extern int CFxAPI_fdti_ssinc(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entnext")]
1999 public static extern int CFxAPI_fdt_entnext(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3);
2001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entpos")]
2002 public static extern int CFxAPI_fdt_entpos(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, IntPtr jarg3);
2004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entlast")]
2005 public static extern int CFxAPI_fdt_entlast(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
2007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entdel")]
2008 public static extern int CFxAPI_fdt_entdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
2010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetA__SWIG_0")]
2011 public static extern global::System.IntPtr
CFxAPI_fdt_entgetA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
bool jarg3);
2013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetA__SWIG_1")]
2016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetW__SWIG_0")]
2017 public static extern global::System.IntPtr
CFxAPI_fdt_entgetW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
bool jarg3);
2019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetW__SWIG_1")]
2022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxA__SWIG_0")]
2023 public static extern global::System.IntPtr
CFxAPI_fdt_entgetxA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4);
2025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxA__SWIG_1")]
2026 public static extern global::System.IntPtr
CFxAPI_fdt_entgetxA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2028 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxW__SWIG_0")]
2029 public static extern global::System.IntPtr
CFxAPI_fdt_entgetxW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4);
2031 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxW__SWIG_1")]
2032 public static extern global::System.IntPtr
CFxAPI_fdt_entgetxW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmodA")]
2035 public static extern int CFxAPI_fdt_entmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmodW")]
2038 public static extern int CFxAPI_fdt_entmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakeA")]
2041 public static extern int CFxAPI_fdt_entmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakeW")]
2044 public static extern int CFxAPI_fdt_entmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakexA")]
2047 public static extern int CFxAPI_fdt_entmakexA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3);
2049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakexW")]
2050 public static extern int CFxAPI_fdt_entmakexW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3);
2052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entupd")]
2053 public static extern int CFxAPI_fdt_entupd(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
2055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entcheck")]
2056 public static extern int CFxAPI_fdt_entcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
2058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entselA")]
2059 public static extern int CFxAPI_fdt_entselA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entselW")]
2062 public static extern int CFxAPI_fdt_entselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselA")]
2065 public static extern int CFxAPI_fdt_nentselA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselW")]
2068 public static extern int CFxAPI_fdt_nentselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpA")]
2071 public static extern int CFxAPI_fdt_nentselpA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpW")]
2074 public static extern int CFxAPI_fdt_nentselpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpexA")]
2077 public static extern int CFxAPI_fdt_nentselpexA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out
int jarg9);
2079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpexW")]
2080 public static extern int CFxAPI_fdt_nentselpexW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out
int jarg9);
2082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_hatch")]
2083 public static extern int CFxAPI_fdt_hatch(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3);
2085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblnextA")]
2086 public static extern global::System.IntPtr
CFxAPI_fdt_tblnextA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
2088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblnextW")]
2089 public static extern global::System.IntPtr
CFxAPI_fdt_tblnextW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
2091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsearchA")]
2092 public static extern global::System.IntPtr
CFxAPI_fdt_tblsearchA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4);
2094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsearchW")]
2095 public static extern global::System.IntPtr
CFxAPI_fdt_tblsearchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblobjnameA")]
2098 public static extern int CFxAPI_fdt_tblobjnameA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3, IntPtr jarg4);
2100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblobjnameW")]
2101 public static extern int CFxAPI_fdt_tblobjnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
2103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmodA")]
2104 public static extern int CFxAPI_fdt_tblmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmodW")]
2107 public static extern int CFxAPI_fdt_tblmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmakeA")]
2110 public static extern int CFxAPI_fdt_tblmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmakeW")]
2113 public static extern int CFxAPI_fdt_tblmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsetA")]
2116 public static extern int CFxAPI_fdt_tblsetA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsetW")]
2119 public static extern int CFxAPI_fdt_tblsetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblrenA")]
2122 public static extern int CFxAPI_fdt_tblrenA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4);
2124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblrenW")]
2125 public static extern int CFxAPI_fdt_tblrenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tbldelA")]
2128 public static extern int CFxAPI_fdt_tbldelA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tbldelW")]
2131 public static extern int CFxAPI_fdt_tbldelW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblpurgeA")]
2134 public static extern int CFxAPI_fdt_tblpurgeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
2136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblpurgeW")]
2137 public static extern int CFxAPI_fdt_tblpurgeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
2139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblcheckrefA")]
2140 public static extern int CFxAPI_fdt_tblcheckrefA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblcheckrefW")]
2143 public static extern int CFxAPI_fdt_tblcheckrefW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_inters")]
2146 public static extern int CFxAPI_fdt_inters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg5,
int jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg7);
2148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_angle")]
2149 public static extern double CFxAPI_fdt_angle(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3);
2151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_distance")]
2152 public static extern double CFxAPI_fdt_distance(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3);
2154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_polar")]
2155 public static extern void CFxAPI_fdt_polar(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
double jarg3,
double jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg5);
2157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_initgetA")]
2158 public static extern int CFxAPI_fdt_initgetA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
string jarg3);
2160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_initgetW")]
2161 public static extern int CFxAPI_fdt_initgetW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getangleA")]
2164 public static extern int CFxAPI_fdt_getangleA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, out
double jarg4);
2166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getangleW")]
2167 public static extern int CFxAPI_fdt_getangleW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
double jarg4);
2169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcornerA")]
2170 public static extern int CFxAPI_fdt_getcornerA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2172 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcornerW")]
2173 public static extern int CFxAPI_fdt_getcornerW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2175 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdistA")]
2176 public static extern int CFxAPI_fdt_getdistA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, out
double jarg4);
2178 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdistW")]
2179 public static extern int CFxAPI_fdt_getdistW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
double jarg4);
2181 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getorientA")]
2182 public static extern int CFxAPI_fdt_getorientA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, out
double jarg4);
2184 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getorientW")]
2185 public static extern int CFxAPI_fdt_getorientW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
double jarg4);
2187 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpointA")]
2188 public static extern int CFxAPI_fdt_getpointA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2190 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpointW")]
2191 public static extern int CFxAPI_fdt_getpointW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2193 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getintA")]
2194 public static extern int CFxAPI_fdt_getintA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
int jarg3);
2196 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getintW")]
2197 public static extern int CFxAPI_fdt_getintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3);
2199 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getkwordA")]
2200 public static extern int CFxAPI_fdt_getkwordA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3, uint jarg4);
2202 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getkwordW")]
2203 public static extern int CFxAPI_fdt_getkwordW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, uint jarg4);
2205 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrealA")]
2206 public static extern int CFxAPI_fdt_getrealA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
double jarg3);
2208 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrealW")]
2209 public static extern int CFxAPI_fdt_getrealW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
double jarg3);
2211 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getinputA")]
2212 public static extern int CFxAPI_fdt_getinputA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, uint jarg3);
2214 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getinputW")]
2215 public static extern int CFxAPI_fdt_getinputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, uint jarg3);
2217 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getstringA")]
2218 public static extern int CFxAPI_fdt_getstringA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
string jarg3,
string jarg4, uint jarg5);
2220 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getstringW")]
2221 public static extern int CFxAPI_fdt_getstringW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, uint jarg5);
2223 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setosnapinactive")]
2226 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_usrbrk")]
2229 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_menucmdA")]
2230 public static extern int CFxAPI_fdt_menucmdA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
2232 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_menucmdW")]
2233 public static extern int CFxAPI_fdt_menucmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2235 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_findfileA")]
2236 public static extern int CFxAPI_fdt_findfileA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2238 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_findfileW")]
2239 public static extern int CFxAPI_fdt_findfileW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2241 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getfiledA")]
2242 public static extern int CFxAPI_fdt_getfiledA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2244 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getfiledW")]
2245 public static extern int CFxAPI_fdt_getfiledW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2247 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_handentA")]
2248 public static extern int CFxAPI_fdt_handentA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, IntPtr jarg3);
2250 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_handentW")]
2251 public static extern int CFxAPI_fdt_handentW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, IntPtr jarg3);
2253 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_transA")]
2254 public static extern int CFxAPI_fdt_transA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6);
2256 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_transW")]
2257 public static extern int CFxAPI_fdt_transW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6);
2259 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_redraw")]
2260 public static extern int CFxAPI_fdt_redraw(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3);
2262 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_regen")]
2263 public static extern int CFxAPI_fdt_regen(global::System.Runtime.InteropServices.HandleRef jarg1);
2265 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadA__SWIG_0")]
2266 public static extern int CFxAPI_fdt_grreadA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, out
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
2268 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadA__SWIG_1")]
2269 public static extern int CFxAPI_fdt_grreadA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, out
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2271 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadW__SWIG_0")]
2272 public static extern int CFxAPI_fdt_grreadW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, out
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
2274 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadW__SWIG_1")]
2275 public static extern int CFxAPI_fdt_grreadW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, out
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2277 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_capture_grread")]
2280 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_release_grread")]
2283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grdraw")]
2284 public static extern int CFxAPI_fdt_grdraw(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3,
int jarg4,
int jarg5);
2286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grvecsA")]
2287 public static extern int CFxAPI_fdt_grvecsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grvecsW")]
2290 public static extern int CFxAPI_fdt_grvecsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_0")]
2293 public static extern int CFxAPI_fdt_grtextA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
int jarg3, out
int jarg4);
2295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_1")]
2298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_2")]
2301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_0")]
2302 public static extern int CFxAPI_fdt_grtextW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3, out
int jarg4);
2304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_1")]
2305 public static extern int CFxAPI_fdt_grtextW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3);
2307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_2")]
2308 public static extern int CFxAPI_fdt_grtextW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_grclear")]
2313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnapA")]
2314 public static extern int CFxAPI_fdt_osnapA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnapW")]
2317 public static extern int CFxAPI_fdt_osnapW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnap_mode")]
2320 public static extern int CFxAPI_fdt_osnap_mode(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2,
int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsnapmodeA")]
2323 public static extern int CFxAPI_fdt_getsnapmodeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
short jarg3);
2325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsnapmodeW")]
2326 public static extern int CFxAPI_fdt_getsnapmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
short jarg3);
2328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_appinters")]
2329 public static extern int CFxAPI_fdt_appinters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_textboxA")]
2332 public static extern int CFxAPI_fdt_textboxA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_textboxW")]
2335 public static extern int CFxAPI_fdt_textboxW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcurr_mousepos")]
2338 public static extern int CFxAPI_fdt_getcurr_mousepos(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
2340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_draggenA")]
2341 public static extern int CFxAPI_fdt_draggenA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6);
2343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_draggenW")]
2344 public static extern int CFxAPI_fdt_draggenW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6);
2346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_init_dragmodeA")]
2347 public static extern int CFxAPI_fdt_init_dragmodeA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_init_dragmodeW")]
2350 public static extern int CFxAPI_fdt_init_dragmodeW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_exit_dragmode")]
2355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_vportsA")]
2356 public static extern int CFxAPI_fdt_vportsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_vportsW")]
2359 public static extern int CFxAPI_fdt_vportsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tabletinfoA")]
2362 public static extern int CFxAPI_fdt_tabletinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_tabletinfoW")]
2365 public static extern int CFxAPI_fdt_tabletinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnewA")]
2368 public static extern int CFxAPI_fdt_flxnewA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnewW")]
2371 public static extern int CFxAPI_fdt_flxnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxrnewA")]
2374 public static extern int CFxAPI_fdt_flxrnewA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxrnewW")]
2377 public static extern int CFxAPI_fdt_flxrnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxopenA")]
2380 public static extern int CFxAPI_fdt_flxopenA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
2382 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxopenW")]
2383 public static extern int CFxAPI_fdt_flxopenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
2385 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxropenA")]
2386 public static extern int CFxAPI_fdt_flxropenA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
2388 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxropenW")]
2389 public static extern int CFxAPI_fdt_flxropenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
2391 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsave")]
2394 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsaveasA")]
2397 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsaveasW")]
2398 public static extern int CFxAPI_fdt_flxsaveasW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2400 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxclose")]
2401 public static extern int CFxAPI_fdt_flxclose(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
2403 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxclosevport")]
2406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnamesA")]
2407 public static extern int CFxAPI_fdt_flxnamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2409 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnamesW")]
2410 public static extern int CFxAPI_fdt_flxnamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2412 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getflxinfoA")]
2413 public static extern int CFxAPI_fdt_getflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2415 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getflxinfoW")]
2416 public static extern int CFxAPI_fdt_getflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2418 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setflxinfoA")]
2419 public static extern int CFxAPI_fdt_setflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2421 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setflxinfoW")]
2422 public static extern int CFxAPI_fdt_setflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2424 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreviewbitmapA")]
2425 public static extern int CFxAPI_fdt_getpreviewbitmapA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2427 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreviewbitmapW")]
2428 public static extern int CFxAPI_fdt_getpreviewbitmapW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2430 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcolorindex")]
2431 public static extern int CFxAPI_fdt_getcolorindex(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3,
int jarg4, out
int jarg5);
2433 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getbackgroundcolorref")]
2436 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcolorref")]
2437 public static extern int CFxAPI_fdt_getcolorref(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2439 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcolorref")]
2440 public static extern int CFxAPI_fdt_setcolorref(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2442 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdesktopcolor")]
2445 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdesktopcolor")]
2448 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrgb")]
2449 public static extern uint
CFxAPI_fdt_getrgb(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
2451 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactivedocumentA")]
2452 public static extern int CFxAPI_fdt_getactivedocumentA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2454 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactivedocumentW")]
2455 public static extern int CFxAPI_fdt_getactivedocumentW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2457 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_set3dview")]
2458 public static extern int CFxAPI_fdt_set3dview(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6,
double jarg7);
2460 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setviewA")]
2461 public static extern int CFxAPI_fdt_setviewA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
2463 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setviewW")]
2464 public static extern int CFxAPI_fdt_setviewW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
2466 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactvport")]
2467 public static extern int CFxAPI_fdt_getactvport(global::System.Runtime.InteropServices.HandleRef jarg1, out
short jarg2, out
short jarg3);
2469 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setactvport")]
2470 public static extern int CFxAPI_fdt_setactvport(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3);
2472 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_zoomext")]
2473 public static extern int CFxAPI_fdt_zoomext(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3);
2475 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_gethandle")]
2476 public static extern int CFxAPI_fdt_gethandle(global::System.Runtime.InteropServices.HandleRef jarg1, out IntPtr jarg2, out IntPtr jarg3);
2478 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_compfontA")]
2479 public static extern int CFxAPI_fdt_compfontA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2481 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_compfontW")]
2482 public static extern int CFxAPI_fdt_compfontW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2484 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcursor")]
2485 public static extern int CFxAPI_fdt_setcursor(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2487 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcursor")]
2488 public static extern int CFxAPI_fdt_getcursor(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2490 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_poly2bspline")]
2491 public static extern int CFxAPI_fdt_poly2bspline(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3);
2493 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_bspline2poly")]
2496 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_poly2catrom_2d")]
2497 public static extern int CFxAPI_fdt_poly2catrom_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3,
double jarg4);
2499 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_catrom2poly_2d")]
2502 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_inputA")]
2503 public static extern global::System.IntPtr
CFxAPI_fdt_inputA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
2505 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_inputW")]
2506 public static extern global::System.IntPtr
CFxAPI_fdt_inputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3);
2508 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_boundingbox")]
2509 public static extern int CFxAPI_fdt_boundingbox(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2511 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_pcontour")]
2512 public static extern int CFxAPI_fdt_pcontour(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4, IntPtr jarg5);
2514 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_wmfoutA")]
2515 public static extern int CFxAPI_fdt_wmfoutA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3,
int jarg4,
char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg7,
int jarg8,
int jarg9);
2517 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_wmfoutW")]
2518 public static extern int CFxAPI_fdt_wmfoutW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3,
int jarg4,
char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg7,
int jarg8,
int jarg9);
2520 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookA")]
2521 public static extern int CFxAPI_fdt_setselecthookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3);
2523 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookW")]
2524 public static extern int CFxAPI_fdt_setselecthookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2526 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookex")]
2527 public static extern int CFxAPI_fdt_setselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2529 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delselecthook")]
2530 public static extern int CFxAPI_fdt_delselecthook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2532 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delselecthookex")]
2535 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_purgeselecthooklist")]
2538 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setmousehook")]
2539 public static extern int CFxAPI_fdt_setmousehook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
short jarg3);
2541 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delmousehook")]
2544 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdbmodhookA")]
2545 public static extern int CFxAPI_fdt_setdbmodhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3);
2547 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdbmodhookW")]
2548 public static extern int CFxAPI_fdt_setdbmodhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2550 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_deldbmodhook")]
2551 public static extern int CFxAPI_fdt_deldbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2553 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_purgedbmodhooklist")]
2556 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entnext_dbhook")]
2559 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookA__SWIG_0")]
2562 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookA__SWIG_1")]
2565 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookW__SWIG_0")]
2568 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookW__SWIG_1")]
2571 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_dbhookA")]
2572 public static extern int CFxAPI_fdt_entmod_dbhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2574 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_dbhookW")]
2575 public static extern int CFxAPI_fdt_entmod_dbhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2577 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_type")]
2580 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isselecthook")]
2583 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_isdbmodhook")]
2586 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_ismousehook")]
2589 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setfunhelpA")]
2590 public static extern int CFxAPI_fdt_setfunhelpA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4);
2592 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setfunhelpW")]
2593 public static extern int CFxAPI_fdt_setfunhelpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2595 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_addimage2libA")]
2596 public static extern int CFxAPI_fdt_addimage2libA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4, ushort jarg5);
2598 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_addimage2libW")]
2599 public static extern int CFxAPI_fdt_addimage2libW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, ushort jarg5);
2601 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getimagetypeA")]
2602 public static extern ushort
CFxAPI_fdt_getimagetypeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2604 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getimagetypeW")]
2605 public static extern ushort
CFxAPI_fdt_getimagetypeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2607 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delimagefromlibA")]
2610 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_delimagefromlibW")]
2611 public static extern int CFxAPI_fdt_delimagefromlibW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2613 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove")]
2614 public static extern int CFxAPI_fdt_remove(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
2616 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_removeall")]
2619 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_remdelall")]
2622 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreselect")]
2625 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprofileslistA")]
2626 public static extern int CFxAPI_fdt_getprofileslistA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
2628 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprofileslistW")]
2629 public static extern int CFxAPI_fdt_getprofileslistW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
2631 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout")]
2632 public static extern int CFxAPI_fdt_genout(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
short jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2634 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout_enamesA")]
2635 public static extern int CFxAPI_fdt_genout_enamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2637 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout_enamesW")]
2638 public static extern int CFxAPI_fdt_genout_enamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2640 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_AddUserImage")]
2641 public static extern IntPtr
CFxAPI_fdt_AddUserImage(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, IntPtr jarg6);
2643 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_DeleteUserImage")]
2646 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_SetRedrawHook")]
2647 public static extern int CFxAPI_fdt_SetRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
short jarg3);
2649 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_DelRedrawHook")]
2652 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetVportExtInfo")]
2653 public static extern int CFxAPI_fdt_GetVportExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2655 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_SetPrintHook")]
2656 public static extern int CFxAPI_fdt_SetPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2658 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_DelPrintHook")]
2661 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetPrintExtInfo")]
2662 public static extern int CFxAPI_fdt_GetPrintExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2664 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_Vcs2PrinterPnt")]
2665 public static extern int CFxAPI_fdt_Vcs2PrinterPnt(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
double jarg3, out
int jarg4, out
int jarg5);
2667 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetLastViewportEntId")]
2670 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfstringA")]
2671 public static extern int CFxAPI_fdt_getconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4,
string jarg5, uint jarg6);
2673 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfstringW")]
2674 public static extern int CFxAPI_fdt_getconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, [MarshalAs(UnmanagedType.LPWStr)]
string jarg5, uint jarg6);
2676 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfintA")]
2677 public static extern int CFxAPI_fdt_getconfintA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4);
2679 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfintW")]
2680 public static extern int CFxAPI_fdt_getconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2682 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfstringA")]
2683 public static extern int CFxAPI_fdt_setconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4);
2685 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfstringW")]
2686 public static extern int CFxAPI_fdt_setconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2688 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfintA")]
2689 public static extern int CFxAPI_fdt_setconfintA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4);
2691 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfintW")]
2692 public static extern int CFxAPI_fdt_setconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2694 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_deleteA")]
2697 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_deleteW")]
2698 public static extern int CFxAPI_fdt_registry_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2700 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_descendentsA")]
2703 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_descendentsW")]
2704 public static extern global::System.IntPtr
CFxAPI_fdt_registry_descendentsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
short jarg3);
2706 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_readA")]
2707 public static extern global::System.IntPtr
CFxAPI_fdt_registry_readA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2709 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_readW")]
2710 public static extern global::System.IntPtr
CFxAPI_fdt_registry_readW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2712 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_writeA")]
2713 public static extern int CFxAPI_fdt_registry_writeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4);
2715 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_writeW")]
2716 public static extern int CFxAPI_fdt_registry_writeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2718 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_deleteA")]
2721 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_deleteW")]
2722 public static extern int CFxAPI_fdt_file_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2724 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_copyA")]
2725 public static extern int CFxAPI_fdt_file_copyA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4, out
int jarg5);
2727 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_copyW")]
2728 public static extern int CFxAPI_fdt_file_copyW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4, out
int jarg5);
2730 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_renameA")]
2731 public static extern int CFxAPI_fdt_file_renameA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
2733 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_renameW")]
2734 public static extern int CFxAPI_fdt_file_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
2736 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_sizeA")]
2737 public static extern int CFxAPI_fdt_file_sizeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]
int[] jarg3);
2739 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_sizeW")]
2740 public static extern int CFxAPI_fdt_file_sizeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]
int[] jarg3);
2742 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_systimeA")]
2743 public static extern int CFxAPI_fdt_file_systimeA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
int jarg3, out
int jarg4, out
int jarg5, out
int jarg6, out
int jarg7, out
int jarg8, out
int jarg9, out
int jarg10);
2745 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_systimeW")]
2746 public static extern int CFxAPI_fdt_file_systimeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3, out
int jarg4, out
int jarg5, out
int jarg6, out
int jarg7, out
int jarg8, out
int jarg9, out
int jarg10);
2748 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_directory_pA")]
2751 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_directory_pW")]
2752 public static extern int CFxAPI_fdt_file_directory_pW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2754 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_directory_filesA")]
2755 public static extern int CFxAPI_fdt_directory_filesA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2757 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_directory_filesW")]
2758 public static extern int CFxAPI_fdt_directory_filesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2760 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_directoryA")]
2763 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_directoryW")]
2764 public static extern int CFxAPI_fdt_filename_directoryW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2766 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_baseA")]
2767 public static extern int CFxAPI_fdt_filename_baseA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
int jarg4);
2769 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_baseW")]
2770 public static extern int CFxAPI_fdt_filename_baseW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2772 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_extensionA")]
2775 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_extensionW")]
2776 public static extern int CFxAPI_fdt_filename_extensionW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2778 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_mktempA")]
2779 public static extern int CFxAPI_fdt_filename_mktempA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4,
string jarg5,
int jarg6);
2781 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_mktempW")]
2782 public static extern int CFxAPI_fdt_filename_mktempW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, [MarshalAs(UnmanagedType.LPWStr)]
string jarg5,
int jarg6);
2784 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_addA")]
2785 public static extern int CFxAPI_fdt_dictionary_addA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3, IntPtr jarg4);
2787 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_addW")]
2788 public static extern int CFxAPI_fdt_dictionary_addW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
2790 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_deleteA")]
2793 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_deleteW")]
2794 public static extern int CFxAPI_fdt_dictionary_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
2796 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_nextA")]
2797 public static extern global::System.IntPtr
CFxAPI_fdt_dictionary_nextA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3);
2799 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_nextW")]
2800 public static extern global::System.IntPtr
CFxAPI_fdt_dictionary_nextW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3);
2802 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_searchA")]
2803 public static extern global::System.IntPtr
CFxAPI_fdt_dictionary_searchA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
int jarg4);
2805 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_searchW")]
2806 public static extern global::System.IntPtr
CFxAPI_fdt_dictionary_searchW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2808 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_renameA")]
2811 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_renameW")]
2812 public static extern int CFxAPI_fdt_dictionary_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2814 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_namedobjdict")]
2817 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getarea")]
2818 public static extern int CFxAPI_fdt_curve_getarea(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out
double jarg3);
2820 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getclosestpointto")]
2821 public static extern int CFxAPI_fdt_curve_getclosestpointto(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3,
int jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg5);
2823 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getclosestpointtoprojection")]
2824 public static extern int CFxAPI_fdt_curve_getclosestpointtoprojection(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4,
int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg6);
2826 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getdistatparam")]
2829 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getdistatpoint")]
2830 public static extern int CFxAPI_fdt_curve_getdistatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, out
double jarg4);
2832 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getendparam")]
2835 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getendpoint")]
2836 public static extern int CFxAPI_fdt_curve_getendpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3);
2838 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getstartparam")]
2841 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getstartpoint")]
2842 public static extern int CFxAPI_fdt_curve_getstartpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3);
2844 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getparamatdist")]
2847 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getpointatdist")]
2848 public static extern int CFxAPI_fdt_curve_getpointatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2850 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getpointatparam")]
2851 public static extern int CFxAPI_fdt_curve_getpointatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2853 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getparamatpoint")]
2854 public static extern int CFxAPI_fdt_curve_getparamatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg3, out
double jarg4);
2856 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getfirstderiv")]
2857 public static extern int CFxAPI_fdt_curve_getfirstderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2859 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getsecondderiv")]
2860 public static extern int CFxAPI_fdt_curve_getsecondderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg4);
2862 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isclosed")]
2865 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isperiodic")]
2868 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isplanar")]
2871 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_translateA")]
2872 public static extern int CFxAPI_fdt_translateA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3,
string jarg4, uint jarg5);
2874 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_translateW")]
2875 public static extern int CFxAPI_fdt_translateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, uint jarg5);
2877 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xdsizeW")]
2878 public static extern int CFxAPI_fdt_xdsizeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out
int jarg3);
2880 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_xdsizeA")]
2881 public static extern int CFxAPI_fdt_xdsizeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out
int jarg3);
2883 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogLoadA")]
2884 public static extern int CFxAPI_dlg_DialogLoadA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
int jarg3);
2886 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogLoadW")]
2887 public static extern int CFxAPI_dlg_DialogLoadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3);
2889 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogUnload")]
2892 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewA")]
2893 public static extern int CFxAPI_dlg_DialogNewA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2895 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewW")]
2896 public static extern int CFxAPI_dlg_DialogNewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2898 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewPositionedA")]
2899 public static extern int CFxAPI_dlg_DialogNewPositionedA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2901 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewPositionedW")]
2902 public static extern int CFxAPI_dlg_DialogNewPositionedW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2904 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogStart")]
2905 public static extern int CFxAPI_dlg_DialogStart(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2907 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogDone")]
2908 public static extern int CFxAPI_dlg_DialogDone(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
int jarg3);
2910 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogDonePositioned")]
2913 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogTerm")]
2916 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileActionA")]
2917 public static extern int CFxAPI_dlg_TileActionA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2919 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileActionW")]
2920 public static extern int CFxAPI_dlg_TileActionW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2922 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetA")]
2923 public static extern int CFxAPI_dlg_TileSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
string jarg4);
2925 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetW")]
2926 public static extern int CFxAPI_dlg_TileSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2928 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileGetA")]
2929 public static extern int CFxAPI_dlg_TileGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
string jarg4,
int jarg5);
2931 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileGetW")]
2932 public static extern int CFxAPI_dlg_TileGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5);
2934 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileClientDataA")]
2935 public static extern int CFxAPI_dlg_TileClientDataA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3, IntPtr jarg4);
2937 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileClientDataW")]
2938 public static extern int CFxAPI_dlg_TileClientDataW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
2940 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileModeA")]
2941 public static extern int CFxAPI_dlg_TileModeA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
short jarg4);
2943 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileModeW")]
2944 public static extern int CFxAPI_dlg_TileModeW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
short jarg4);
2946 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileDimensionsA")]
2947 public static extern int CFxAPI_dlg_TileDimensionsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3, out
short jarg4, out
short jarg5);
2949 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileDimensionsW")]
2950 public static extern int CFxAPI_dlg_TileDimensionsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
short jarg4, out
short jarg5);
2952 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetFontA")]
2953 public static extern int CFxAPI_dlg_TileSetFontA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
short jarg4);
2955 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetFontW")]
2956 public static extern int CFxAPI_dlg_TileSetFontW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
short jarg4);
2958 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListStartA")]
2959 public static extern int CFxAPI_dlg_ListStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
short jarg4,
short jarg5);
2961 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListStartW")]
2962 public static extern int CFxAPI_dlg_ListStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
short jarg4,
short jarg5);
2964 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListAddA")]
2965 public static extern int CFxAPI_dlg_ListAddA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
2967 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListAddW")]
2968 public static extern int CFxAPI_dlg_ListAddW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
2970 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListGetA")]
2971 public static extern int CFxAPI_dlg_ListGetA(global::System.Runtime.InteropServices.HandleRef jarg1, out
int jarg2,
string jarg3,
int jarg4);
2973 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListGetW")]
2974 public static extern int CFxAPI_dlg_ListGetW(global::System.Runtime.InteropServices.HandleRef jarg1, out
int jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
2976 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListEnd")]
2979 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetTabStopsA")]
2980 public static extern int CFxAPI_dlg_ListSetTabStopsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
string jarg4);
2982 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetTabStopsW")]
2983 public static extern int CFxAPI_dlg_ListSetTabStopsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2985 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetColumnWidthA")]
2988 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetColumnWidthW")]
2989 public static extern int CFxAPI_dlg_ListSetColumnWidthW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
2991 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderGetA")]
2992 public static extern int CFxAPI_dlg_SliderGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3, out
int jarg4, out
int jarg5, out
int jarg6, out
int jarg7, out
int jarg8);
2994 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderGetW")]
2995 public static extern int CFxAPI_dlg_SliderGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
int jarg4, out
int jarg5, out
int jarg6, out
int jarg7, out
int jarg8);
2997 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderSetA")]
2998 public static extern int CFxAPI_dlg_SliderSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3,
int jarg4,
int jarg5,
int jarg6,
int jarg7,
int jarg8);
3000 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderSetW")]
3001 public static extern int CFxAPI_dlg_SliderSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4,
int jarg5,
int jarg6,
int jarg7,
int jarg8);
3003 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageStartA")]
3004 public static extern int CFxAPI_dlg_ImageStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2,
string jarg3);
3006 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageStartW")]
3007 public static extern int CFxAPI_dlg_ImageStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
3009 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageEnd")]
3012 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageVector")]
3013 public static extern int CFxAPI_dlg_ImageVector(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
short jarg6);
3015 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageFill")]
3016 public static extern int CFxAPI_dlg_ImageFill(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
short jarg6);
3018 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageBmpA")]
3019 public static extern int CFxAPI_dlg_ImageBmpA(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
string jarg6);
3021 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageBmpW")]
3022 public static extern int CFxAPI_dlg_ImageBmpW(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
3024 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImagePreviewBmpA")]
3025 public static extern int CFxAPI_dlg_ImagePreviewBmpA(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
string jarg6);
3027 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImagePreviewBmpW")]
3028 public static extern int CFxAPI_dlg_ImagePreviewBmpW(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
3030 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageWmfA")]
3031 public static extern int CFxAPI_dlg_ImageWmfA(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
string jarg6);
3033 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageWmfW")]
3034 public static extern int CFxAPI_dlg_ImageWmfW(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
3036 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageSlideA")]
3037 public static extern int CFxAPI_dlg_ImageSlideA(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
string jarg6);
3039 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageSlideW")]
3040 public static extern int CFxAPI_dlg_ImageSlideW(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
3042 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageLibraryA")]
3043 public static extern int CFxAPI_dlg_ImageLibraryA(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5,
string jarg6,
string jarg7);
3045 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageLibraryW")]
3046 public static extern int CFxAPI_dlg_ImageLibraryW(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
short jarg3,
short jarg4,
short jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6, [MarshalAs(UnmanagedType.LPWStr)]
string jarg7);
3048 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_dialogA")]
3049 public static extern int CFxAPI_dcl_new_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3051 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_dialogW")]
3052 public static extern int CFxAPI_dcl_new_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3054 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_load_dialogA")]
3055 public static extern int CFxAPI_dcl_load_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, out
int jarg3);
3057 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_load_dialogW")]
3058 public static extern int CFxAPI_dcl_load_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, out
int jarg3);
3060 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_unload_dialog")]
3063 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_dialog")]
3064 public static extern int CFxAPI_dcl_start_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out
int jarg3);
3066 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_done_dialog")]
3067 public static extern int CFxAPI_dcl_done_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
3069 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_positioned_dialogA")]
3070 public static extern int CFxAPI_dcl_new_positioned_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3, IntPtr jarg4,
int jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
3072 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_positioned_dialogW")]
3073 public static extern int CFxAPI_dcl_new_positioned_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2,
int jarg3, IntPtr jarg4,
int jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
3075 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_done_positioned_dialog")]
3076 public static extern int CFxAPI_dcl_done_positioned_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4, out
int jarg5);
3078 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_term_dialog")]
3081 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_listA")]
3082 public static extern int CFxAPI_dcl_start_listA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
int jarg4,
int jarg5);
3084 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_listW")]
3085 public static extern int CFxAPI_dcl_start_listW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4,
int jarg5);
3087 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_add_listA")]
3088 public static extern int CFxAPI_dcl_add_listA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
3090 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_add_listW")]
3091 public static extern int CFxAPI_dcl_add_listW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
3093 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_list_stringA")]
3094 public static extern int CFxAPI_dcl_get_list_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
string jarg4,
int jarg5,
int jarg6);
3096 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_list_stringW")]
3097 public static extern int CFxAPI_dcl_get_list_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5,
int jarg6);
3099 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_end_list")]
3102 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attrA")]
3103 public static extern int CFxAPI_dcl_get_attrA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
string jarg4,
string jarg5,
int jarg6);
3105 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attrW")]
3106 public static extern int CFxAPI_dcl_get_attrW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4, [MarshalAs(UnmanagedType.LPWStr)]
string jarg5,
int jarg6);
3108 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attr_stringA")]
3109 public static extern int CFxAPI_dcl_get_attr_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
string jarg4,
int jarg5);
3111 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attr_stringW")]
3112 public static extern int CFxAPI_dcl_get_attr_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5);
3114 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tileA")]
3115 public static extern int CFxAPI_dcl_get_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
string jarg4,
int jarg5);
3117 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tileW")]
3118 public static extern int CFxAPI_dcl_get_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4,
int jarg5);
3120 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_set_tileA")]
3121 public static extern int CFxAPI_dcl_set_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
string jarg4);
3123 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_set_tileW")]
3124 public static extern int CFxAPI_dcl_set_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, [MarshalAs(UnmanagedType.LPWStr)]
string jarg4);
3126 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_action_tileA")]
3127 public static extern int CFxAPI_dcl_action_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3, IntPtr jarg4);
3129 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_action_tileW")]
3130 public static extern int CFxAPI_dcl_action_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
3132 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_mode_tileA")]
3133 public static extern int CFxAPI_dcl_mode_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
int jarg4);
3135 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_mode_tileW")]
3136 public static extern int CFxAPI_dcl_mode_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
3138 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_dimensions_tileA")]
3139 public static extern int CFxAPI_dcl_dimensions_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3, out
int jarg4, out
int jarg5);
3141 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_dimensions_tileW")]
3142 public static extern int CFxAPI_dcl_dimensions_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, out
int jarg4, out
int jarg5);
3144 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_imageA")]
3145 public static extern int CFxAPI_dcl_start_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3);
3147 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_imageW")]
3148 public static extern int CFxAPI_dcl_start_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3);
3150 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_fill_image")]
3151 public static extern int CFxAPI_dcl_fill_image(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4,
int jarg5,
int jarg6);
3153 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_slide_imageA")]
3154 public static extern int CFxAPI_dcl_slide_imageA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4,
int jarg5,
string jarg6);
3156 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_slide_imageW")]
3157 public static extern int CFxAPI_dcl_slide_imageW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4,
int jarg5, [MarshalAs(UnmanagedType.LPWStr)]
string jarg6);
3159 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_vector_image")]
3160 public static extern int CFxAPI_dcl_vector_image(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4,
int jarg5,
int jarg6);
3162 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_end_image")]
3165 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_client_data_tileA")]
3166 public static extern int CFxAPI_dcl_client_data_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3, IntPtr jarg4);
3168 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_client_data_tileW")]
3169 public static extern int CFxAPI_dcl_client_data_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, IntPtr jarg4);
3171 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tile_keyA")]
3172 public static extern int CFxAPI_dcl_get_tile_keyA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
string jarg3,
int jarg4);
3174 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tile_keyW")]
3175 public static extern int CFxAPI_dcl_get_tile_keyW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3,
int jarg4);
3177 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_push_resource_handle")]
3178 public static extern void CFxAPI_fdt_push_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3180 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_pop_resource_handle")]
3183 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_install_modeless_hook")]
3184 public static extern int CFxAPI_fdt_install_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3186 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_uninstall_modeless_hook")]
3189 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_add_support_pathA")]
3192 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_add_support_pathW")]
3193 public static extern int CFxAPI_fdt_add_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2);
3195 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove_support_pathA")]
3198 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove_support_pathW")]
3201 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loaded_appsA")]
3202 public static extern int CFxAPI_fdt_loaded_appsA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3204 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_loaded_appsW")]
3205 public static extern int CFxAPI_fdt_loaded_appsW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3207 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterlistA")]
3208 public static extern int CFxAPI_fdt_getprinterlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3210 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterlistW")]
3211 public static extern int CFxAPI_fdt_getprinterlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3213 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterpapersizesA")]
3214 public static extern int CFxAPI_fdt_getprinterpapersizesA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3216 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterpapersizesW")]
3217 public static extern int CFxAPI_fdt_getprinterpapersizesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3219 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getresourceimageA")]
3220 public static extern int CFxAPI_fdt_getresourceimageA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3222 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getresourceimageW")]
3223 public static extern int CFxAPI_fdt_getresourceimageW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3225 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreferenceA")]
3226 public static extern int CFxAPI_fdt_getpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3228 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreferenceW")]
3229 public static extern int CFxAPI_fdt_getpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3231 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreferenceA")]
3232 public static extern int CFxAPI_fdt_setpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3234 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreferenceW")]
3235 public static extern int CFxAPI_fdt_setpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
string jarg2, [MarshalAs(UnmanagedType.LPWStr)]
string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3237 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetADSName")]
3238 public static extern int CFxAPI_GetADSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
3240 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetObjectId")]
3241 public static extern int CFxAPI_GetObjectId(IntPtr jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3243 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetSSName")]
3244 public static extern int CFxAPI_GetSSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
3246 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetSSPtr")]
3249 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetPoint3D__SWIG_0")]
3250 public static extern int CFxAPI_GetPoint3D__SWIG_0([In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3252 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetPoint3D__SWIG_1")]
3253 public static extern int CFxAPI_GetPoint3D__SWIG_1([In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3255 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_0")]
3256 public static extern int CFxAPI_GetPointFDT__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
3258 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_1")]
3259 public static extern int CFxAPI_GetPointFDT__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
3261 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_2")]
3262 public static extern int CFxAPI_GetPointFDT__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]
double[] jarg2);
3264 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetMatrix3D")]
3265 public static extern int CFxAPI_GetMatrix3D(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3267 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetMatrixFDT")]
3268 public static extern int CFxAPI_GetMatrixFDT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3270 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetResBufFDTW")]
3271 public static extern int CFxAPI_GetResBufFDTW(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4,
bool jarg5);
3273 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetResBufDDW__SWIG_0")]
3274 public static extern int CFxAPI_GetResBufDDW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3,
int jarg4);
3276 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetResBufDDW__SWIG_1")]
3277 public static extern int CFxAPI_GetResBufDDW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3);
3279 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetResBuf")]
3280 public static extern int CFxAPI_GetResBuf(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3282 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_AddResBuf")]
3283 public static extern int CFxAPI_AddResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3285 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetFxDocument")]
3286 public static extern global::System.IntPtr
CFxAPI_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
3288 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetFxDatabase__SWIG_0")]
3291 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetUserIO__SWIG_0")]
3294 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetActiveFxView")]
3297 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_CheckFilter")]
3298 public static extern bool CFxAPI_CheckFilter(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3300 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_GetFXImages")]
3301 public static extern global::System.IntPtr
CFxAPI_GetFXImages(global::System.Runtime.InteropServices.HandleRef jarg1);
3303 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_0")]
3304 public static extern global::System.IntPtr
CFxAPI_ConvertToW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
3306 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_1")]
3307 public static extern global::System.IntPtr
CFxAPI_ConvertToW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3309 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_0")]
3310 public static extern global::System.IntPtr
CFxAPI_ConvertToA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
3312 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_1")]
3313 public static extern global::System.IntPtr
CFxAPI_ConvertToA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3315 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_2")]
3316 public static extern void CFxAPI_ConvertToW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3318 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_2")]
3319 public static extern void CFxAPI_ConvertToA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3321 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FXAPI")]
3322 public static extern global::System.IntPtr
FXAPI();
3324 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_cast")]
3327 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_desc")]
3330 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_isA")]
3333 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_queryX")]
3336 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_createObject")]
3339 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxBagFiler")]
3342 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_getResBuf")]
3345 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_getRealClassName")]
3348 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_cast")]
3351 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_desc")]
3354 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_isA")]
3357 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_queryX")]
3360 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_createObject")]
3363 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetClipBoundary__SWIG_0")]
3366 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetClipBoundary__SWIG_1")]
3369 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetTransform")]
3370 public static extern void CFxGeometryClipper_SetTransform(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3372 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_GetClipper")]
3375 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_getRealClassName")]
3378 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxGeometryClipper")]
3381 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSystemServices")]
3384 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetPassword")]
3385 public static extern bool CFxSystemServices_GetPassword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3, ref IntPtr jarg4);
3387 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_AuditPrintReport")]
3388 public static extern void CFxSystemServices_AuditPrintReport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3390 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_0")]
3391 public static extern global::System.IntPtr
CFxSystemServices_FindFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3, HandleRef jarg4,
int jarg5);
3393 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_1")]
3394 public static extern global::System.IntPtr
CFxSystemServices_FindFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3, HandleRef jarg4);
3396 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_2")]
3397 public static extern global::System.IntPtr
CFxSystemServices_FindFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
3399 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_3")]
3400 public static extern global::System.IntPtr
CFxSystemServices_FindFile__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3402 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_IsValidFileName")]
3405 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_Write__SWIG_0")]
3406 public static extern void CFxSystemServices_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3408 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_Write__SWIG_1")]
3409 public static extern void CFxSystemServices_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3411 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_0")]
3412 public static extern void CFxSystemServices_WriteLine__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4);
3414 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_1")]
3415 public static extern void CFxSystemServices_WriteLine__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3417 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_2")]
3420 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetMainFrame")]
3423 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_MessageBox")]
3424 public static extern int CFxSystemServices_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
3426 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxDocumentManager")]
3429 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetHostAppServices")]
3432 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetSystemServices")]
3435 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxEvalModeHandler")]
3438 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxSystemServices_CFxExpressionParserData")]
3441 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSystemServices_CFxExpressionParserData")]
3444 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set")]
3447 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get")]
3450 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set")]
3453 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get")]
3456 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set")]
3459 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get")]
3462 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set")]
3465 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get")]
3468 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set")]
3471 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get")]
3474 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set")]
3477 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get")]
3480 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set")]
3483 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get")]
3486 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set")]
3489 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get")]
3492 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set")]
3495 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get")]
3498 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUCS_set")]
3501 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUCS_get")]
3504 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set")]
3507 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get")]
3510 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set")]
3513 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get")]
3516 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set")]
3519 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get")]
3522 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set")]
3525 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get")]
3528 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set")]
3531 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get")]
3534 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_0")]
3535 public static extern IntPtr
CFxSystemServices_SendStringToExecute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3537 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_1")]
3540 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_2")]
3543 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_3")]
3544 public static extern IntPtr
CFxSystemServices_SendStringToExecute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3546 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_4")]
3549 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_5")]
3550 public static extern IntPtr
CFxSystemServices_SendStringToExecute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4);
3552 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_QueueExpr__SWIG_0")]
3553 public static extern void CFxSystemServices_QueueExpr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3);
3555 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_QueueExpr__SWIG_1")]
3558 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxGDIDevice")]
3561 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateRasterImage")]
3564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetAvailableFonts")]
3567 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxProfileManager")]
3570 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxIO")]
3573 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxApplications")]
3576 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetVSTA")]
3579 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_ActivateRibbon")]
3582 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetIApplication")]
3585 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_0")]
3586 public static extern int CFxSystemServices_FileDialog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11,
int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13);
3588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_1")]
3589 public static extern int CFxSystemServices_FileDialog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11,
int jarg12);
3591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_2")]
3592 public static extern int CFxSystemServices_FileDialog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
3594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_3")]
3595 public static extern int CFxSystemServices_FileDialog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10);
3597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_4")]
3598 public static extern int CFxSystemServices_FileDialog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
3600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_5")]
3601 public static extern int CFxSystemServices_FileDialog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11,
int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13);
3603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_6")]
3604 public static extern int CFxSystemServices_FileDialog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11,
int jarg12);
3606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_7")]
3607 public static extern int CFxSystemServices_FileDialog__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
3609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_8")]
3610 public static extern int CFxSystemServices_FileDialog__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out
int jarg10);
3612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_9")]
3613 public static extern int CFxSystemServices_FileDialog__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
3615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxUI")]
3618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_Help")]
3619 public static extern void CFxSystemServices_Help(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_ExitApplication__SWIG_0")]
3624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_ExitApplication__SWIG_1")]
3627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_IsApplicationExiting")]
3630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxNetworkAccessManager")]
3633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateGeometryClipper")]
3636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetInitialDirPath__SWIG_0")]
3637 public static extern void CFxSystemServices_GetInitialDirPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetInitialDirPath__SWIG_1")]
3642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetInitialDirPath")]
3645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetObjectManager")]
3648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_0")]
3649 public static extern IntPtr
CFxSystemServices_CreateBagFiler__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
3651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_1")]
3654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_2")]
3657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_3")]
3660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_userBreak")]
3663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetUserBreak__SWIG_0")]
3666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetUserBreak__SWIG_1")]
3669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetSystemCodepage")]
3672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetSystemCodepage")]
3675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_DoVerb")]
3676 public static extern bool CFxSystemServices_DoVerb(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_AddOleDataToClipboard")]
3679 public static extern bool CFxSystemServices_AddOleDataToClipboard(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4,
int jarg5);
3681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetGeomUtils")]
3684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetModelerManufacture")]
3687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetVersion__SWIG_0")]
3690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetVersion__SWIG_1")]
3693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetOEMVersion")]
3694 public static extern void CFxSystemServices_SetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetOEMVersion")]
3699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetAppDataVersion")]
3702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetOpenDefaultExtension")]
3705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_0")]
3708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_1")]
3711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_2")]
3714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_3")]
3717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_AuthoriseOEMModule")]
3720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_IsOEMModuleAuthorised")]
3723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_CreateDrawablePreview")]
3724 public static extern global::System.IntPtr
CFxSystemServices_CreateDrawablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, UInt32 jarg3, HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
3726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxAPI")]
3727 public static extern global::System.IntPtr
CFxSystemServices_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_StopATFBomb")]
3732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_GetRibbonTheme")]
3735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_SetRibbonTheme")]
3738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_AddOutputDevice")]
3741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_RemoveOutputDevice")]
3744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_ExecuteStringOnPause__SWIG_0")]
3745 public static extern IntPtr
CFxSystemServices_ExecuteStringOnPause__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemServices_ExecuteStringOnPause__SWIG_1")]
3750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxSystemServices")]
3753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_cast")]
3756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_desc")]
3759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_isA")]
3762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_queryX")]
3765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_createObject")]
3768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDatabase")]
3771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_0")]
3774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_1")]
3777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_2")]
3780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_0")]
3783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_1")]
3786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_2")]
3789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_0")]
3792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_1")]
3795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_2")]
3798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_LockFile")]
3801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveViewportId__SWIG_0")]
3804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveViewportId__SWIG_1")]
3807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_IsModelLayoutActive")]
3810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveBlockId")]
3813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetUnitsFormatter")]
3816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetFileData")]
3819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_SetFileData")]
3822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetRecentlyErased")]
3825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_StartUndoRecord")]
3828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_ResetTime")]
3831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetDatabaseHistory")]
3834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_BlockPurge")]
3835 public static extern int CFxDatabase_BlockPurge(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
3837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetBlockedPurge")]
3840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getElapsedTime")]
3843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDWGCODEPAGE")]
3846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPLIMMIN")]
3849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPLIMMAX")]
3852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDWGCODEPAGE")]
3855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTDUCREATE")]
3858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTDUUPDATE")]
3861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTDINDWG")]
3864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTDUSRTIMER")]
3867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPSTYLEMODE")]
3870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSORG")]
3873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSXDIR")]
3876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSYDIR")]
3879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSORG")]
3880 public static extern bool CFxDatabase_setUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSXDIR")]
3885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSYDIR")]
3888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSAll")]
3889 public static extern bool CFxDatabase_setPUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSAll")]
3892 public static extern bool CFxDatabase_setUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS1")]
3895 [
return: MarshalAs(UnmanagedType.LPWStr)]
3898 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS1")]
3901 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS2")]
3902 [
return: MarshalAs(UnmanagedType.LPWStr)]
3905 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS2")]
3908 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS3")]
3909 [
return: MarshalAs(UnmanagedType.LPWStr)]
3912 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS3")]
3915 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS4")]
3916 [
return: MarshalAs(UnmanagedType.LPWStr)]
3919 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS4")]
3922 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS5")]
3923 [
return: MarshalAs(UnmanagedType.LPWStr)]
3926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS5")]
3929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getBINDTYPE")]
3932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setBINDTYPE")]
3935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_GetGsView")]
3936 public static extern global::System.IntPtr
CFxDatabase_GetGsView(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getRealClassName")]
3941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getBACKZ")]
3944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setBACKZ")]
3947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCTAB")]
3950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCTAB")]
3951 public static extern void CFxDatabase_setCTAB(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCPLOTSTYLE")]
3954 [
return: MarshalAs(UnmanagedType.LPWStr)]
3957 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCPLOTSTYLE")]
3960 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCVPORT")]
3963 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCVPORT")]
3966 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDWGNAME")]
3967 [
return: MarshalAs(UnmanagedType.LPWStr)]
3970 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDWGNAME")]
3973 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDWGPREFIX")]
3974 [
return: MarshalAs(UnmanagedType.LPWStr)]
3977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDWGPREFIX")]
3980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDWGTITLED")]
3983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDWGTITLED")]
3986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getELEVATION")]
3989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setELEVATION")]
3992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getEXTMAX")]
3995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setEXTMAX")]
3996 public static extern void CFxDatabase_setEXTMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getEXTMIN")]
4001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setEXTMIN")]
4002 public static extern void CFxDatabase_setEXTMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getFRONTZ")]
4007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setFRONTZ")]
4010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getGRIDMODE")]
4013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setGRIDMODE")]
4016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getGRIDUNIT")]
4019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setGRIDUNIT")]
4022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getINSBASE")]
4025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setINSBASE")]
4028 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLENSLENGTH")]
4031 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLENSLENGTH")]
4034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLIMCHECK")]
4037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLIMCHECK")]
4040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLIMMAX")]
4043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLIMMAX")]
4044 public static extern void CFxDatabase_setLIMMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLIMMIN")]
4049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLIMMIN")]
4050 public static extern void CFxDatabase_setLIMMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPANG")]
4055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPANG")]
4058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPBASE")]
4061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPBASE")]
4064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPISOPAIR")]
4067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPISOPAIR")]
4070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPMODE")]
4073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPMODE")]
4076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPSTYL")]
4079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPSTYL")]
4082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPUNIT")]
4085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPUNIT")]
4088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getSYSCODEPAGE")]
4091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setSYSCODEPAGE")]
4094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getTARGET")]
4097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTARGET")]
4098 public static extern void CFxDatabase_setTARGET(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSFOLLOW")]
4103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSFOLLOW")]
4106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSICON")]
4109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSICON")]
4112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSVP")]
4115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSVP")]
4118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSNAME")]
4121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUCSNAME")]
4124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSORG")]
4127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSXDIR")]
4130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUCSYDIR")]
4133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWCTR")]
4136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWCTR")]
4139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWDIR")]
4142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWDIR")]
4145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWMODE")]
4148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWMODE")]
4151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWSIZE")]
4154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWSIZE")]
4157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWTWIST")]
4160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWTWIST")]
4163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getWORLDUCS")]
4166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setWORLDUCS")]
4169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLOGINNAME")]
4170 [
return: MarshalAs(UnmanagedType.LPWStr)]
4173 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLOGINNAME")]
4176 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDATE")]
4179 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDATE")]
4180 public static extern void CFxDatabase_setDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4182 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCDATE")]
4185 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCDATE")]
4188 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPERSPECTIVE")]
4191 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPERSPECTIVE")]
4194 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getIMAGEFRAME")]
4197 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setIMAGEFRAME")]
4200 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getFRAME")]
4203 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setFRAME")]
4206 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPDFFRAME")]
4209 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPDFFRAME")]
4212 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getXCLIPFRAME")]
4215 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setXCLIPFRAME")]
4218 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDWFFRAME")]
4221 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDWFFRAME")]
4224 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDGNFRAME")]
4227 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDGNFRAME")]
4230 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getOLEFRAME")]
4233 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setOLEFRAME")]
4236 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getTEXTSTYLE")]
4239 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTEXTSTYLE")]
4242 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getTEXTSIZE")]
4245 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setTEXTSIZE")]
4248 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getERRNO")]
4251 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setERRNO")]
4254 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCIRCLERAD")]
4257 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCIRCLERAD")]
4260 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCMDECHO")]
4263 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCMDECHO")]
4266 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPANG")]
4269 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPANG")]
4272 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPBOUND")]
4275 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPBOUND")]
4278 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPDOUBLE")]
4281 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPDOUBLE")]
4284 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPDRAWORDER")]
4287 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPDRAWORDER")]
4290 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPNAME")]
4291 [
return: MarshalAs(UnmanagedType.LPWStr)]
4294 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPNAME")]
4297 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPSCALE")]
4300 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPSCALE")]
4303 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHPSPACE")]
4306 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHPSPACE")]
4309 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getINSNAME")]
4310 [
return: MarshalAs(UnmanagedType.LPWStr)]
4313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setINSNAME")]
4316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLSPALOAD")]
4317 [
return: MarshalAs(UnmanagedType.LPWStr)]
4320 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLSPALOAD")]
4323 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLASTPOINT")]
4326 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLASTPOINT")]
4329 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getOFFSETDIST")]
4332 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setOFFSETDIST")]
4335 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDONUTID")]
4338 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDONUTID")]
4341 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDONUTOD")]
4344 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDONUTOD")]
4347 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getFILLETRAD3D")]
4350 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setFILLETRAD3D")]
4353 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getUNDOCTL")]
4356 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setUNDOCTL")]
4359 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getAREA")]
4362 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setAREA")]
4365 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCMDACTIVE")]
4368 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCMDACTIVE")]
4371 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getCMDNAMES")]
4372 [
return: MarshalAs(UnmanagedType.LPWStr)]
4375 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setCMDNAMES")]
4378 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDIASTAT")]
4381 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDIASTAT")]
4384 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDISTANCE")]
4387 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDISTANCE")]
4390 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getHANDLES")]
4393 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setHANDLES")]
4396 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLASTANGLE")]
4399 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLASTANGLE")]
4402 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getLOGFILENAME")]
4403 [
return: MarshalAs(UnmanagedType.LPWStr)]
4406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setLOGFILENAME")]
4409 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getOPENFORMATVERSION")]
4412 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setOPENFORMATVERSION")]
4415 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPERIMETER")]
4418 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPERIMETER")]
4421 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getPREVCMD")]
4422 [
return: MarshalAs(UnmanagedType.LPWStr)]
4425 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setPREVCMD")]
4428 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVSMAX")]
4431 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVSMAX")]
4432 public static extern void CFxDatabase_setVSMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4434 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getVSMIN")]
4437 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setVSMIN")]
4438 public static extern void CFxDatabase_setVSMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4440 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getWRITESTAT")]
4443 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setWRITESTAT")]
4446 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_getDBMOD")]
4449 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_setDBMOD")]
4452 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEvalModeHandler_DoEvalMode")]
4455 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEvalModeHandler_UndoEvalMode")]
4458 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxEvalModeHandler")]
4461 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxTracker")]
4464 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxTracker")]
4465 public static extern void delete_CFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
4467 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_Update")]
4468 public static extern void CFxTracker_Update(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4470 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_DrawTracker")]
4471 public static extern void CFxTracker_DrawTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4473 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_DrawDDTracker")]
4474 public static extern void CFxTracker_DrawDDTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4476 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_DrawDDTrackerSwigExplicitCFxTracker")]
4479 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_CheckRegenAbort")]
4480 public static extern bool CFxTracker_CheckRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4482 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_CheckRegenAbortSwigExplicitCFxTracker")]
4485 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_GetName")]
4486 public static extern global::System.IntPtr
CFxTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4488 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_GetNameSwigExplicitCFxTracker")]
4491 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_IsEager")]
4492 public static extern bool CFxTracker_IsEager(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4494 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_IsEagerSwigExplicitCFxTracker")]
4497 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_DoAction")]
4498 public static extern bool CFxTracker_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4500 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_DoActionSwigExplicitCFxTracker")]
4503 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_OnMainSelectionSetChanged")]
4506 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_OnMainSelectionSetChangedSwigExplicitCFxTracker")]
4509 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_m_bAdded_set")]
4512 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_m_bAdded_get")]
4515 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTracker_director_connect")]
4518 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxTrackerContext")]
4521 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetWidth")]
4524 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetHeight")]
4527 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxView__SWIG_0")]
4530 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_IsForActiveView")]
4533 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_0")]
4536 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_1")]
4539 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_2")]
4542 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_3")]
4543 public static extern void CFxTrackerContext_DrawDrawable__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3,
int jarg4,
int jarg5);
4545 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_4")]
4548 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_5")]
4551 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxInputPointManager")]
4554 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxDocument")]
4557 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetBackground")]
4560 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetForeground")]
4563 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_AllowRegenAbort")]
4566 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_CacheMe")]
4567 public static extern void CFxTrackerContext_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3,
int jarg4);
4569 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxTrackerContext_GetGiGeometry")]
4572 [DllImport(
"FxManaged.dll", EntryPoint=
4573"CSharp_new_ClassPtrArray__SWIG_0"
4577 [DllImport(
"FxManaged.dll", EntryPoint=
4578"CSharp_new_ClassPtrArray__SWIG_1"
4582 [DllImport(
"FxManaged.dll", EntryPoint=
4583"CSharp_new_ClassPtrArray__SWIG_2"
4588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Clear")]
4591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Add")]
4592 public static extern void ClassPtrArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_size")]
4597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_capacity")]
4600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_reserve")]
4603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_resize")]
4604 public static extern void ClassPtrArray_resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_getitemcopy")]
4609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_getitem")]
4610 public static extern global::System.IntPtr
ClassPtrArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
4612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_setitem")]
4613 public static extern void ClassPtrArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_AddRange")]
4616 public static extern void ClassPtrArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_GetRange")]
4619 public static extern global::System.IntPtr
ClassPtrArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
4621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Insert")]
4622 public static extern void ClassPtrArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_InsertRange")]
4625 public static extern void ClassPtrArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_RemoveAt")]
4630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_RemoveRange")]
4633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Repeat")]
4634 public static extern global::System.IntPtr
ClassPtrArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
4636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Reverse__SWIG_0")]
4639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Reverse__SWIG_1")]
4642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_SetRange")]
4643 public static extern void ClassPtrArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Contains")]
4646 public static extern bool ClassPtrArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_IndexOf")]
4649 public static extern int ClassPtrArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_LastIndexOf")]
4652 public static extern int ClassPtrArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ClassPtrArray_Remove")]
4655 public static extern bool ClassPtrArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_ClassPtrArray")]
4660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Clear")]
4663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Add")]
4664 public static extern void CLASS_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_size")]
4667 public static extern uint
CLASS_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1);
4669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_capacity")]
4672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_reserve")]
4673 public static extern void CLASS_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_0")]
4678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_1")]
4681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_2")]
4684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_getitemcopy")]
4687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_getitem")]
4688 public static extern global::System.IntPtr
CLASS_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
4690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_setitem")]
4691 public static extern void CLASS_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_AddRange")]
4694 public static extern void CLASS_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_GetRange")]
4697 public static extern global::System.IntPtr
CLASS_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
4699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Insert")]
4700 public static extern void CLASS_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_InsertRange")]
4703 public static extern void CLASS_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_RemoveAt")]
4708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_RemoveRange")]
4711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Repeat")]
4712 public static extern global::System.IntPtr
CLASS_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
4714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Reverse__SWIG_0")]
4717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Reverse__SWIG_1")]
4720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_SetRange")]
4721 public static extern void CLASS_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Contains")]
4724 public static extern bool CLASS_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_IndexOf")]
4727 public static extern int CLASS_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_LastIndexOf")]
4730 public static extern int CLASS_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CLASS_VECTOR_Remove")]
4733 public static extern bool CLASS_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CLASS_VECTOR")]
4738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Clear")]
4741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Add")]
4742 public static extern void SIZE_T_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_size")]
4747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_capacity")]
4750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_reserve")]
4753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_0")]
4756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_1")]
4759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_2")]
4762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_getitemcopy")]
4765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_getitem")]
4768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_setitem")]
4769 public static extern void SIZE_T_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, uint jarg3);
4771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_AddRange")]
4772 public static extern void SIZE_T_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_GetRange")]
4775 public static extern global::System.IntPtr
SIZE_T_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
4777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Insert")]
4778 public static extern void SIZE_T_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, uint jarg3);
4780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_InsertRange")]
4781 public static extern void SIZE_T_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_RemoveAt")]
4786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_RemoveRange")]
4789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Repeat")]
4792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Reverse__SWIG_0")]
4795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Reverse__SWIG_1")]
4798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_SetRange")]
4799 public static extern void SIZE_T_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_SIZE_T_VECTOR")]
4804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxIteratorEntityData")]
4807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorEntityData_start")]
4810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorEntityData_step")]
4813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorEntityData_done")]
4816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorEntityData_getObject")]
4819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorEntityData_seek")]
4820 public static extern bool CFxIteratorEntityData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxIteratorSelectionData")]
4825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_start")]
4828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_step")]
4831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_done")]
4834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_getObject")]
4837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_seek")]
4838 public static extern bool CFxIteratorSelectionData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_OdStaticRxObject_OdDbSelectionSet")]
4843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionSet")]
4846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetNumber")]
4849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetFxDatabase")]
4852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetLength")]
4855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetTotalSubents")]
4858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetId")]
4859 public static extern global::System.IntPtr
CFxSelectionSet_GetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentGetLength")]
4864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentGetId")]
4865 public static extern global::System.IntPtr
CFxSelectionSet_SubentGetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3);
4867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_Clear")]
4870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_IsMember__SWIG_0")]
4873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_IsMember__SWIG_1")]
4876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetClassesFound")]
4877 public static extern void CFxSelectionSet_GetClassesFound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCommonBaseClass")]
4882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCommonBasePEClass")]
4885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetObjectsByClass")]
4886 public static extern void CFxSelectionSet_GetObjectsByClass(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetNTHX")]
4889 public static extern int CFxSelectionSet_GetNTHX(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_Add")]
4892 public static extern bool CFxSelectionSet_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_Remove")]
4895 public static extern bool CFxSelectionSet_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4897 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentAdd")]
4898 public static extern bool CFxSelectionSet_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4900 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentRemove")]
4901 public static extern bool CFxSelectionSet_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4903 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SetCustomFilter")]
4904 public static extern void CFxSelectionSet_SetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4906 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCustomFilter")]
4909 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_AddObjectFilter")]
4912 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_ClearObjectFilters")]
4915 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Found_set")]
4918 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Found_get")]
4921 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Duplicated_set")]
4924 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Duplicated_get")]
4927 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Removed_set")]
4930 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Removed_get")]
4933 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Groups_set")]
4936 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Groups_get")]
4939 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set")]
4942 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get")]
4945 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set")]
4948 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get")]
4951 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set")]
4954 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get")]
4957 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set")]
4960 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get")]
4963 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set")]
4966 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get")]
4969 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set")]
4972 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get")]
4975 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedCloud_set")]
4978 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedCloud_get")]
4981 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxSelectionSet_MergeResult")]
4984 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionSet_MergeResult")]
4987 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_RemoveOptions_set")]
4990 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_RemoveOptions_get")]
4993 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_pFilter_set")]
4996 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_pFilter_get")]
4999 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_Classes_set")]
5002 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_Classes_get")]
5005 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxSelectionSet_MergeOptions")]
5008 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionSet_MergeOptions")]
5011 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_Merge__SWIG_0")]
5012 public static extern global::System.IntPtr
CFxSelectionSet_Merge__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5014 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_Merge__SWIG_1")]
5015 public static extern global::System.IntPtr
CFxSelectionSet_Merge__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5017 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_AddReactor")]
5018 public static extern void CFxSelectionSet_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5020 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_RemoveReactor")]
5021 public static extern void CFxSelectionSet_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5023 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_IsHighlightEnabled")]
5026 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SetHighlightEnabled")]
5029 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_CreateIterator")]
5032 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_IsEmpty")]
5035 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByPoint")]
5036 public static extern global::System.IntPtr
CFxSelectionSet_SelectByPoint(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5038 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByBox")]
5039 public static extern global::System.IntPtr
CFxSelectionSet_SelectByBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5041 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByWindow")]
5042 public static extern global::System.IntPtr
CFxSelectionSet_SelectByWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5044 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByCrossingWindow")]
5045 public static extern global::System.IntPtr
CFxSelectionSet_SelectByCrossingWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5047 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByPolygon")]
5048 public static extern global::System.IntPtr
CFxSelectionSet_SelectByPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5050 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByCrossingPolygon")]
5053 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByFence")]
5054 public static extern global::System.IntPtr
CFxSelectionSet_SelectByFence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5056 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectAll")]
5059 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectLast")]
5062 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectGroup")]
5065 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectPrevious")]
5068 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByView")]
5071 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectForHatch")]
5072 public static extern global::System.IntPtr
CFxSelectionSet_SelectForHatch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5074 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionData")]
5077 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetMethod")]
5080 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetData")]
5083 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetWindowId")]
5086 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Description_set")]
5089 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Description_get")]
5092 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Point_set")]
5095 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Point_get")]
5098 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Direction_set")]
5101 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Direction_get")]
5104 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxSelectionData_CFxVertexData")]
5107 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionData_CFxVertexData")]
5110 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetPointsCount")]
5113 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetPoints")]
5116 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetNumEntities")]
5119 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_IsNestedSelection")]
5122 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetSpaceId")]
5125 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_CreateIterator")]
5128 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionData_GetMode")]
5131 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxEntityData")]
5134 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetId")]
5135 public static extern global::System.IntPtr
CFxEntityData_GetId(global::System.Runtime.InteropServices.HandleRef jarg1);
5137 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetLayerId")]
5140 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetDrawOrder")]
5143 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetClass")]
5146 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetFlags")]
5149 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_GetIndex")]
5152 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_IsWholeEntitySelected")]
5155 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_SubentGetLength")]
5158 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_ContainsSubent")]
5159 public static extern bool CFxEntityData_ContainsSubent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5161 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_SubentAdd")]
5162 public static extern bool CFxEntityData_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5164 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_SubentRemove")]
5165 public static extern bool CFxEntityData_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5167 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEntityData_CreateIterator")]
5170 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUnitsFormatter")]
5173 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_SetFxDatabase")]
5176 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_GetFxDatabase")]
5179 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_IntToString")]
5180 public static extern int CFxUnitsFormatter_IntToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
5182 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToInt")]
5183 public static extern int CFxUnitsFormatter_StringToInt(global::System.Runtime.InteropServices.HandleRef jarg1, out
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5185 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_0")]
5186 public static extern 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);
5188 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_1")]
5189 public static extern int CFxUnitsFormatter_RealToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3,
int jarg4,
int jarg5);
5191 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_2")]
5194 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_3")]
5197 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_0")]
5198 public static extern int CFxUnitsFormatter_StringToReal__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4,
bool jarg5);
5200 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_1")]
5201 public static extern int CFxUnitsFormatter_StringToReal__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4);
5203 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_2")]
5206 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_0")]
5207 public static extern 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);
5209 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_1")]
5210 public static extern 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);
5212 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_2")]
5213 public static extern 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);
5215 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_3")]
5216 public static extern 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);
5218 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_4")]
5219 public static extern int CFxUnitsFormatter_PointToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5221 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_5")]
5222 public static extern 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);
5224 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_6")]
5225 public static extern 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);
5227 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_7")]
5228 public static extern 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);
5230 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_8")]
5231 public static extern 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);
5233 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_9")]
5234 public static extern int CFxUnitsFormatter_PointToString__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5236 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_0")]
5237 public static extern 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);
5239 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_1")]
5240 public static extern 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);
5242 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_2")]
5243 public static extern int CFxUnitsFormatter_StringToPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5245 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_0")]
5246 public static extern 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);
5248 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_1")]
5249 public static extern 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);
5251 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_2")]
5252 public static extern int CFxUnitsFormatter_AngleToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3,
int jarg4,
int jarg5);
5254 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_3")]
5257 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_4")]
5260 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_5")]
5261 public static extern 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);
5263 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_0")]
5264 public static extern 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);
5266 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_1")]
5267 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4,
bool jarg5);
5269 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_2")]
5272 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_3")]
5275 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_4")]
5276 public static extern 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);
5278 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToUCS")]
5279 public static extern int CFxUnitsFormatter_PointToUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5281 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointFromUCS")]
5282 public static extern int CFxUnitsFormatter_PointFromUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5284 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_0")]
5285 public static extern 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);
5287 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_1")]
5290 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_2")]
5293 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_3")]
5296 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_4")]
5297 public static extern 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);
5299 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_0")]
5302 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_1")]
5305 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_2")]
5306 public static extern 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);
5308 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToColor")]
5309 public static extern int CFxUnitsFormatter_StringToColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5311 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ResBufToString")]
5312 public static extern int CFxUnitsFormatter_ResBufToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3);
5314 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ReadDouble__SWIG_0")]
5315 public static extern 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);
5317 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ReadDouble__SWIG_1")]
5320 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_NameToString")]
5323 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToName")]
5324 public static extern int CFxUnitsFormatter_StringToName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5326 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_GetUCS2WCS")]
5327 public static extern int CFxUnitsFormatter_GetUCS2WCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5329 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Clear")]
5332 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Add")]
5333 public static extern void TRACKER_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5335 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_size")]
5338 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_capacity")]
5341 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_reserve")]
5344 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_0")]
5347 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_1")]
5350 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_2")]
5353 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_getitemcopy")]
5356 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_getitem")]
5357 public static extern global::System.IntPtr
TRACKER_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
5359 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_setitem")]
5360 public static extern void TRACKER_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5362 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_AddRange")]
5363 public static extern void TRACKER_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5365 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_GetRange")]
5366 public static extern global::System.IntPtr
TRACKER_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
5368 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Insert")]
5369 public static extern void TRACKER_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5371 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_InsertRange")]
5372 public static extern void TRACKER_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5374 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_RemoveAt")]
5377 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_RemoveRange")]
5380 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Repeat")]
5381 public static extern global::System.IntPtr
TRACKER_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
5383 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Reverse__SWIG_0")]
5386 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Reverse__SWIG_1")]
5389 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_SetRange")]
5390 public static extern void TRACKER_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5392 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Contains")]
5393 public static extern bool TRACKER_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5395 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_IndexOf")]
5396 public static extern int TRACKER_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5398 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_LastIndexOf")]
5399 public static extern int TRACKER_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5401 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Remove")]
5402 public static extern bool TRACKER_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5404 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_TRACKER_VECTOR")]
5407 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Clear")]
5410 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Add")]
5411 public static extern void CFxStringArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5413 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_size")]
5416 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_capacity")]
5419 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_reserve")]
5422 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_0")]
5425 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_1")]
5428 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_2")]
5431 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_getitemcopy")]
5434 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_getitem")]
5435 public static extern global::System.IntPtr
CFxStringArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
5437 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_setitem")]
5438 public static extern void CFxStringArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5440 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_AddRange")]
5441 public static extern void CFxStringArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5443 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_GetRange")]
5444 public static extern global::System.IntPtr
CFxStringArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
5446 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Insert")]
5447 public static extern void CFxStringArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5449 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_InsertRange")]
5450 public static extern void CFxStringArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5452 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_RemoveAt")]
5455 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_RemoveRange")]
5458 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Repeat")]
5459 public static extern global::System.IntPtr
CFxStringArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
5461 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Reverse__SWIG_0")]
5464 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_Reverse__SWIG_1")]
5467 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStringArray_SetRange")]
5468 public static extern void CFxStringArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5470 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxStringArray")]
5473 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Clear")]
5476 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Add")]
5477 public static extern void FileNameRetValArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5479 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_size")]
5482 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_capacity")]
5485 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_reserve")]
5488 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_0")]
5491 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_1")]
5494 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_2")]
5497 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_getitemcopy")]
5500 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_getitem")]
5503 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_setitem")]
5504 public static extern void FileNameRetValArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5506 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_AddRange")]
5507 public static extern void FileNameRetValArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5509 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_GetRange")]
5512 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Insert")]
5513 public static extern void FileNameRetValArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5515 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_InsertRange")]
5516 public static extern void FileNameRetValArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5518 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_RemoveAt")]
5521 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_RemoveRange")]
5524 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Repeat")]
5527 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Reverse__SWIG_0")]
5530 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_Reverse__SWIG_1")]
5533 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FileNameRetValArray_SetRange")]
5534 public static extern void FileNameRetValArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5536 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_FileNameRetValArray")]
5539 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Min_set")]
5542 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Min_get")]
5545 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Max_set")]
5548 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Max_get")]
5551 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxRangeDouble")]
5554 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxRangeDouble")]
5557 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeInt_m_Min_set")]
5560 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeInt_m_Min_get")]
5563 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeInt_m_Max_set")]
5566 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRangeInt_m_Max_get")]
5569 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxRangeInt")]
5572 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxRangeInt")]
5575 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxEdInputTracker")]
5578 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsDrawInAllViewports")]
5581 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsDrawInAllViewportsSwigExplicitCFxEdInputTracker")]
5584 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_subSetAttributes")]
5587 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_subSetAttributesSwigExplicitCFxEdInputTracker")]
5590 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_subWorldDraw")]
5593 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_subWorldDrawSwigExplicitCFxEdInputTracker")]
5596 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValue")]
5597 public static extern void CFxEdInputTracker_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5599 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValueFinal")]
5600 public static extern void CFxEdInputTracker_setValueFinal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5602 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValueFinalSwigExplicitCFxEdInputTracker")]
5605 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsSuitableForContext")]
5608 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsSuitableForContextSwigExplicitCFxEdInputTracker")]
5611 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetFxDocument")]
5614 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetFxDocumentSwigExplicitCFxEdInputTracker")]
5617 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetWorkingPlane")]
5620 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetWorkingPlaneSwigExplicitCFxEdInputTracker")]
5623 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_EnablePreview")]
5626 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_EnablePreviewSwigExplicitCFxEdInputTracker")]
5629 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsPreviewEnabled")]
5632 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsPreviewEnabledSwigExplicitCFxEdInputTracker")]
5635 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetName")]
5638 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetNameSwigExplicitCFxEdInputTracker")]
5641 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetDrawDecoration")]
5644 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetDrawDecorationSwigExplicitCFxEdInputTracker")]
5647 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_addDrawables")]
5650 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_addDrawablesSwigExplicitCFxEdInputTracker")]
5653 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_removeDrawables")]
5656 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_removeDrawablesSwigExplicitCFxEdInputTracker")]
5659 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxEdInputTracker")]
5662 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEdInputTracker_director_connect")]
5663 public static extern void CFxEdInputTracker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_0 delegate0,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_1 delegate1,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_2 delegate2,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_3 delegate3,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_4 delegate4,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_5 delegate5,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_6 delegate6,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_7 delegate7,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_8 delegate8,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_9 delegate9,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_10 delegate10,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_11 delegate11,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_12 delegate12,
CFxEdInputTracker.
SwigDelegateCFxEdInputTracker_13 delegate13);
5665 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUserIO")]
5666 public static extern void delete_CFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1);
5668 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_Write")]
5669 public static extern void CFxUserIO_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5671 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_0")]
5672 public static extern int CFxUserIO_DoSSGet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9,
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5674 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_1")]
5675 public static extern int CFxUserIO_DoSSGet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9,
int jarg10);
5677 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_2")]
5678 public static extern int CFxUserIO_DoSSGet__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9);
5680 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_3")]
5681 public static extern int CFxUserIO_DoSSGet__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5683 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_4")]
5684 public static extern int CFxUserIO_DoSSGet__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5686 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_5")]
5687 public static extern int CFxUserIO_DoSSGet__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5689 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_6")]
5690 public static extern int CFxUserIO_DoSSGet__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5692 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_7")]
5693 public static extern int CFxUserIO_DoSSGet__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4);
5695 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_8")]
5696 public static extern int CFxUserIO_DoSSGet__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5698 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_0")]
5699 public static extern int CFxUserIO_DoEntsel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
bool jarg6,
int jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5701 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_1")]
5702 public static extern int CFxUserIO_DoEntsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
bool jarg6,
int jarg7,
int jarg8);
5704 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_2")]
5705 public static extern int CFxUserIO_DoEntsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
bool jarg6,
int jarg7);
5707 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_3")]
5708 public static extern int CFxUserIO_DoEntsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
bool jarg6);
5710 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_0")]
5711 public static extern int CFxUserIO_DoNentsel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
int jarg9,
int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5713 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_1")]
5714 public static extern int CFxUserIO_DoNentsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
int jarg9,
int jarg10);
5716 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_2")]
5717 public static extern int CFxUserIO_DoNentsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
int jarg9);
5719 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_3")]
5720 public static extern int CFxUserIO_DoNentsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5,
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5722 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetUserInput__SWIG_0")]
5723 public static extern int CFxUserIO_GetUserInput__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5725 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetUserInput__SWIG_1")]
5728 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_0")]
5729 public static extern int CFxUserIO_GetPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5731 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_1")]
5732 public static extern int CFxUserIO_GetPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5734 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_2")]
5735 public static extern int CFxUserIO_GetPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8);
5737 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_3")]
5738 public static extern int CFxUserIO_GetPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5740 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_4")]
5741 public static extern int CFxUserIO_GetPoint__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5743 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_5")]
5744 public static extern int CFxUserIO_GetPoint__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5746 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_0")]
5747 public static extern int CFxUserIO_GetString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5749 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_1")]
5750 public static extern int CFxUserIO_GetString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5752 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_2")]
5753 public static extern int CFxUserIO_GetString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5755 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_0")]
5756 public static extern int CFxUserIO_GetKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5758 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_1")]
5759 public static extern int CFxUserIO_GetKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5761 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_2")]
5762 public static extern int CFxUserIO_GetKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5764 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_0")]
5765 public static extern int CFxUserIO_GetDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, out
double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5767 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_1")]
5768 public static extern int CFxUserIO_GetDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, out
double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5770 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_2")]
5771 public static extern int CFxUserIO_GetDouble__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, out
double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5773 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_3")]
5774 public static extern int CFxUserIO_GetDouble__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, out
double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5776 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_4")]
5777 public static extern int CFxUserIO_GetDouble__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, out
double jarg4);
5779 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_0")]
5780 public static extern int CFxUserIO_GetInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5782 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_1")]
5783 public static extern int CFxUserIO_GetInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5785 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_2")]
5786 public static extern int CFxUserIO_GetInt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5788 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_3")]
5789 public static extern int CFxUserIO_GetInt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5791 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_4")]
5792 public static extern int CFxUserIO_GetInt__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, out
int jarg4);
5794 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_0")]
5795 public static extern int CFxUserIO_GetAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5797 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_1")]
5798 public static extern int CFxUserIO_GetAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5800 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_2")]
5801 public static extern int CFxUserIO_GetAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9);
5803 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_3")]
5804 public static extern int CFxUserIO_GetAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5806 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_4")]
5807 public static extern int CFxUserIO_GetAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5809 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_5")]
5810 public static extern int CFxUserIO_GetAngle__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5812 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_6")]
5813 public static extern int CFxUserIO_GetAngle__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5);
5815 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_0")]
5816 public static extern int CFxUserIO_GetDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5818 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_1")]
5819 public static extern int CFxUserIO_GetDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5821 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_2")]
5822 public static extern int CFxUserIO_GetDirection__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9);
5824 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_3")]
5825 public static extern int CFxUserIO_GetDirection__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5827 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_4")]
5828 public static extern int CFxUserIO_GetDirection__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5830 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_5")]
5831 public static extern int CFxUserIO_GetDirection__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5833 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_6")]
5834 public static extern int CFxUserIO_GetDirection__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5);
5836 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_0")]
5837 public static extern int CFxUserIO_GetOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5839 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_1")]
5840 public static extern int CFxUserIO_GetOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5842 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_2")]
5843 public static extern int CFxUserIO_GetOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9);
5845 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_3")]
5846 public static extern int CFxUserIO_GetOrient__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5848 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_4")]
5849 public static extern int CFxUserIO_GetOrient__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5851 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_5")]
5852 public static extern int CFxUserIO_GetOrient__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5854 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_6")]
5855 public static extern int CFxUserIO_GetOrient__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5);
5857 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_0")]
5858 public static extern int CFxUserIO_GetCorner__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5860 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_1")]
5861 public static extern int CFxUserIO_GetCorner__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5863 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_2")]
5864 public static extern int CFxUserIO_GetCorner__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5866 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_3")]
5867 public static extern int CFxUserIO_GetCorner__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5869 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_4")]
5870 public static extern int CFxUserIO_GetCorner__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5872 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_0")]
5873 public static extern int CFxUserIO_GetDist__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5875 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_1")]
5876 public static extern int CFxUserIO_GetDist__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5878 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_2")]
5879 public static extern int CFxUserIO_GetDist__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8,
bool jarg9);
5881 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_3")]
5882 public static extern int CFxUserIO_GetDist__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5884 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_4")]
5885 public static extern int CFxUserIO_GetDist__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5887 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_5")]
5888 public static extern int CFxUserIO_GetDist__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5890 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_6")]
5891 public static extern int CFxUserIO_GetDist__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
double jarg5);
5893 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_0")]
5894 public static extern int CFxUserIO_GetNoteEditor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8);
5896 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_1")]
5897 public static extern int CFxUserIO_GetNoteEditor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5899 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_2")]
5900 public static extern int CFxUserIO_GetNoteEditor__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5902 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_3")]
5903 public static extern int CFxUserIO_GetNoteEditor__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5905 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_4")]
5906 public static extern int CFxUserIO_GetNoteEditor__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4);
5908 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_5")]
5909 public static extern int CFxUserIO_GetNoteEditor__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2,
int jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8);
5911 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_6")]
5912 public static extern int CFxUserIO_GetNoteEditor__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2,
int jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5914 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_7")]
5915 public static extern int CFxUserIO_GetNoteEditor__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2,
int jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5917 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_8")]
5918 public static extern int CFxUserIO_GetNoteEditor__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2,
int jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5920 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_9")]
5923 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0")]
5924 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10,
int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1")]
5927 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10,
int jarg11);
5929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2")]
5930 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3")]
5933 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9);
5935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4")]
5936 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0")]
5939 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10,
int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1")]
5942 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10,
int jarg11);
5944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2")]
5945 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3")]
5948 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out
int jarg9);
5950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4")]
5951 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4(
int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3,
int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_0")]
5954 public static extern int CFxUserIO_GetFileName__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14,
int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16);
5956 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_1")]
5957 public static extern int CFxUserIO_GetFileName__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14,
int jarg15);
5959 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_2")]
5960 public static extern int CFxUserIO_GetFileName__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14);
5962 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_3")]
5963 public static extern int CFxUserIO_GetFileName__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13);
5965 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_4")]
5966 public static extern int CFxUserIO_GetFileName__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5968 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_0")]
5969 public static extern int CFxUserIO_GetFileNames__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14,
int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16);
5971 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_1")]
5972 public static extern int CFxUserIO_GetFileNames__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14,
int jarg15);
5974 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_2")]
5975 public static extern int CFxUserIO_GetFileNames__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14);
5977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_3")]
5978 public static extern int CFxUserIO_GetFileNames__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out
int jarg13);
5980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_4")]
5981 public static extern int CFxUserIO_GetFileNames__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7,
int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_MessageBox")]
5984 public static extern int CFxUserIO_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, uint jarg5);
5986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_0")]
5989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_1")]
5990 public static extern void CFxUserIO_Initget__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_2")]
5993 public static extern void CFxUserIO_Initget__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_SetIsPrintSelectResults")]
5998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetUnitsFormatter")]
6001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_SetPromptExplanation")]
6002 public static extern void CFxUserIO_SetPromptExplanation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPrompt__SWIG_0")]
6005 public static extern global::System.IntPtr
CFxUserIO_GetPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPrompt__SWIG_1")]
6008 public static extern global::System.IntPtr
CFxUserIO_GetPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptPoint__SWIG_0")]
6011 public static extern global::System.IntPtr
CFxUserIO_GetPromptPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptPoint__SWIG_1")]
6014 public static extern global::System.IntPtr
CFxUserIO_GetPromptPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptString__SWIG_0")]
6017 public static extern global::System.IntPtr
CFxUserIO_GetPromptString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptString__SWIG_1")]
6020 public static extern global::System.IntPtr
CFxUserIO_GetPromptString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptDist")]
6023 public static extern global::System.IntPtr
CFxUserIO_GetPromptDist(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3);
6025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptReal")]
6026 public static extern global::System.IntPtr
CFxUserIO_GetPromptReal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3);
6028 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptAngle__SWIG_0")]
6029 public static extern global::System.IntPtr
CFxUserIO_GetPromptAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3,
bool jarg4);
6031 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptAngle__SWIG_1")]
6032 public static extern global::System.IntPtr
CFxUserIO_GetPromptAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3);
6034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptInt__SWIG_0")]
6035 public static extern global::System.IntPtr
CFxUserIO_GetPromptInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
6037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptInt__SWIG_1")]
6038 public static extern global::System.IntPtr
CFxUserIO_GetPromptInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_0")]
6041 public static extern global::System.IntPtr
CFxUserIO_GetPromptKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_1")]
6044 public static extern global::System.IntPtr
CFxUserIO_GetPromptKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_2")]
6049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_MessageLoop_Obsolete")]
6050 public static extern void CFxUserIO_MessageLoop_Obsolete(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2,
bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
6052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetPreviousSelectionSet")]
6055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_SetPreviousSelectionSet")]
6058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetZoomScale")]
6059 public static extern int CFxUserIO_GetZoomScale(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetFxCurrentSelectionSet")]
6064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_IsPending")]
6067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_InitgetFlags")]
6070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetActivePrompt")]
6073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_SetCurrentPrompt__SWIG_0")]
6074 public static extern void CFxUserIO_SetCurrentPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
6076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_SetCurrentPrompt__SWIG_1")]
6079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetActiveGlobalKeywords")]
6080 public static extern global::System.IntPtr
CFxUserIO_GetActiveGlobalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUserIO_GetActiveLocalKeywords")]
6083 public static extern global::System.IntPtr
CFxUserIO_GetActiveLocalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxUserIO")]
6086 public static extern global::System.IntPtr
GetFxUserIO(HandleRef jarg1);
6088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_NullViewportKey_get")]
6091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxViewportSnapShot")]
6094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_InitializeFromView")]
6097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_InitializeFromViewInfo")]
6100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_ApplyToView")]
6101 public static extern void CFxViewportSnapShot_ApplyToView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPosition")]
6106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetTarget")]
6109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetEyeVector")]
6112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetUpVector")]
6115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFieldWidth")]
6118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFieldHeight")]
6121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPixelWidth")]
6124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPixelHeight")]
6127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFocalLength")]
6130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetWorldToEyeMatrix")]
6133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetVisibleRect")]
6136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewSettingsValid__SWIG_0")]
6139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewSettingsValid__SWIG_1")]
6142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewExtentsValid")]
6145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetNumPixelsInUnitSquare")]
6146 public static extern global::System.IntPtr
CFxViewportSnapShot_GetNumPixelsInUnitSquare(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
6148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxViewportSnapShot")]
6151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxView")]
6152 public static extern void delete_CFxView(global::System.Runtime.InteropServices.HandleRef jarg1);
6154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_cast")]
6157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_desc")]
6160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_isA")]
6161 public static extern IntPtr
CFxView_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_queryX")]
6164 public static extern IntPtr
CFxView_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_createObject")]
6169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetFxVectorizeDevice__SWIG_0")]
6172 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetViewportInternalRegionWCS")]
6175 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetViewportExternalRegionWCS")]
6178 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsOverall")]
6179 public static extern bool CFxView_IsOverall(global::System.Runtime.InteropServices.HandleRef jarg1);
6181 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsPaperSpaceOverall")]
6184 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsActive")]
6185 public static extern bool CFxView_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6187 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetPreviousData")]
6190 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_StartTransaction")]
6193 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_EndTransaction")]
6196 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_InsideTransaction")]
6199 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToWCS__SWIG_0")]
6200 public static extern int CFxView_PointToWCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6202 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToWCS__SWIG_1")]
6203 public static extern int CFxView_PointToWCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6205 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_0")]
6206 public static extern int CFxView_PointToWCSOnUCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6208 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_1")]
6209 public static extern int CFxView_PointToWCSOnUCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6211 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_2")]
6212 public static extern int CFxView_PointToWCSOnUCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6214 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_0")]
6215 public static extern void CFxView_PointToSCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6217 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_1")]
6218 public static extern void CFxView_PointToSCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6220 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_2")]
6221 public static extern void CFxView_PointToSCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6223 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToView__SWIG_0")]
6224 public static extern int CFxView_PointToView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6226 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PointToView__SWIG_1")]
6227 public static extern int CFxView_PointToView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6229 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_EyeToPaperSpace__SWIG_0")]
6232 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_EyeToPaperSpace__SWIG_1")]
6235 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PaperSpaceToEye__SWIG_0")]
6238 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_PaperSpaceToEye__SWIG_1")]
6241 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_WorldToView")]
6242 public static extern global::System.IntPtr
CFxView_WorldToView(global::System.Runtime.InteropServices.HandleRef jarg1);
6244 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetVpNum")]
6245 public static extern int CFxView_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1);
6247 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetCadWindowId")]
6250 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetPreviousViewSettings")]
6253 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_AddViewReactor")]
6254 public static extern void CFxView_AddViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6256 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_RemoveViewReactor")]
6257 public static extern void CFxView_RemoveViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6259 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetElevation")]
6260 public static extern void CFxView_SetElevation(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
6262 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_Elevation")]
6263 public static extern double CFxView_Elevation(global::System.Runtime.InteropServices.HandleRef jarg1);
6265 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsRectangular")]
6268 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_ViewExtentsWCS")]
6269 public static extern bool CFxView_ViewExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6271 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_ZoomExtentsWCS")]
6272 public static extern bool CFxView_ZoomExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6274 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_EnterDragMode")]
6277 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsDragging")]
6280 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_LeaveDragMode")]
6283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetRealExtents__SWIG_0")]
6286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetRealExtents__SWIG_1")]
6289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetGeomExtents__SWIG_0")]
6290 public static extern bool CFxView_GetGeomExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
6292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetGeomExtents__SWIG_1")]
6293 public static extern bool CFxView_GetGeomExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetPanMode")]
6296 public static extern void CFxView_SetPanMode(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
6298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsPanMode")]
6299 public static extern bool CFxView_IsPanMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetZoomMode")]
6302 public static extern void CFxView_SetZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
6304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsZoomMode")]
6307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetOrbitMode")]
6308 public static extern void CFxView_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
6310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsOrbitMode")]
6313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsPreviousVectorizationAborted")]
6316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_viewDir")]
6317 public static extern global::System.IntPtr
CFxView_viewDir(global::System.Runtime.InteropServices.HandleRef jarg1);
6319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_focalLength")]
6322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_getWorldToEyeTransform")]
6325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_getEyeToWorldTransform")]
6328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_getEyeToScreenMatrix")]
6331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetDeviation")]
6332 public static extern double CFxView_GetDeviation(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_screenRect__SWIG_0")]
6335 public static extern void CFxView_screenRect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_screenRect__SWIG_1")]
6338 public static extern void CFxView_screenRect__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_visibleScreenRect")]
6343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_visibleScreenRectInViewCoordinates")]
6346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_screenWidth")]
6349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_screenHeight")]
6352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_visibleWidth")]
6355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_visibleHeight")]
6358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_viewportObjectId")]
6361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_GetCorrectionScreenMatrix")]
6364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_numDrawables")]
6367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_drawableAt")]
6368 public static extern IntPtr
CFxView_drawableAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_IsFieldAspectMaintained")]
6373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SetFieldAspectMaintained")]
6376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetPaperProperties")]
6377 public static extern void GetPaperProperties(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetActiveFxView")]
6382 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxVectorizeDevice_CreateDrawContext")]
6386 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_cast")]
6389 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_desc")]
6392 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_isA")]
6395 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_queryX")]
6398 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_createObject")]
6401 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxVectorizeDevice")]
6404 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_DestroyDrawContext")]
6407 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetDeviceWidth")]
6410 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetDeviceHeight")]
6413 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_InitializeLayout")]
6416 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_DestroyLayout")]
6419 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_Update")]
6420 public static extern void CFxVectorizeDevice_Update(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
double jarg3,
bool jarg4);
6422 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetFxDatabase__SWIG_0")]
6425 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_AddDeviceReactor")]
6428 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_RemoveDeviceReactor")]
6431 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetCurrentRenderEngine")]
6434 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetLayoutId")]
6437 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetPalette")]
6438 public static extern void CFxVectorizeDevice_SetPalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2);
6440 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPalette")]
6443 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetBackground__SWIG_0")]
6446 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetBackground__SWIG_1")]
6449 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetBackground")]
6452 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetForeground")]
6455 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetActiveFxView__SWIG_0")]
6458 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetFxViewByCadWindowId")]
6461 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPaperSpaceOverallView")]
6464 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_HitTest")]
6465 public static extern global::System.IntPtr
CFxVectorizeDevice_HitTest(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6467 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_IsRegeneration")]
6470 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetRegeneration")]
6473 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_InvalidateGeometry")]
6476 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPixelPerMM")]
6479 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_AdjustBeforeUpdate")]
6480 public static extern void CFxVectorizeDevice_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6482 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetModelLineWeights")]
6485 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPlotArea__SWIG_0")]
6488 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPlotArea__SWIG_1")]
6491 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetPlotArea")]
6492 public static extern void CFxVectorizeDevice_SetPlotArea(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6494 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetUsePlotTransparency")]
6497 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_UsePlotTransparency")]
6500 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_IsInitialUpdate")]
6504 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxCommand_groupName")]
6507 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxCommand_execute")]
6512 [DllImport(
"FxManaged.dll", EntryPoint=
6513"CSharp_new_CFxCommand"
6518 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxCommand")]
6519 public static extern void delete_CFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6521 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_Execute")]
6522 public static extern int CFxCommand_Execute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6524 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_undefine")]
6525 public static extern void CFxCommand_undefine(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
6527 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_undefineSwigExplicitCFxCommand")]
6530 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_flags")]
6531 public static extern Int32
CFxCommand_flags(global::System.Runtime.InteropServices.HandleRef jarg1);
6533 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_flagsSwigExplicitCFxCommand")]
6536 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_HasFlag")]
6537 public static extern bool CFxCommand_HasFlag(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2);
6539 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_GetBuiltInGroupName")]
6542 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_GetLISPGroupName")]
6545 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_Help")]
6546 public static extern void CFxCommand_Help(global::System.Runtime.InteropServices.HandleRef jarg1);
6548 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_HelpSwigExplicitCFxCommand")]
6551 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_OpenHelp")]
6554 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_GetHelpId")]
6557 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_GetHelpIdSwigExplicitCFxCommand")]
6560 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_displayName")]
6561 [
return: MarshalAs(UnmanagedType.LPWStr)]
6564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_displayNameSwigExplicitCFxCommand")]
6565 [
return: MarshalAs(UnmanagedType.LPWStr)]
6568 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_director_connect")]
6569 public static extern void CFxCommand_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxCommand.
SwigDelegateCFxCommand_0 delegate0,
CFxCommand.
SwigDelegateCFxCommand_1 delegate1,
CFxCommand.
SwigDelegateCFxCommand_2 delegate2,
CFxCommand.
SwigDelegateCFxCommand_3 delegate3,
CFxCommand.
SwigDelegateCFxCommand_4 delegate4,
CFxCommand.
SwigDelegateCFxCommand_5 delegate5,
CFxCommand.
SwigDelegateCFxCommand_6 delegate6,
CFxCommand.
SwigDelegateCFxCommand_7 delegate7,
CFxCommand.
SwigDelegateCFxCommand_8 delegate8,
CFxCommand.
SwigDelegateCFxCommand_9 delegate9,
CFxCommand.
SwigDelegateCFxCommand_10 delegate10);
6571 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CreateSelectionSet")]
6574 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDocumentManager")]
6577 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_0")]
6578 public static extern global::System.IntPtr
CFxDocumentManager_NewDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]
String jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
6580 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_1")]
6581 public static extern global::System.IntPtr
CFxDocumentManager_NewDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]
String jarg4);
6583 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_2")]
6584 public static extern global::System.IntPtr
CFxDocumentManager_NewDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6586 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_3")]
6589 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_0")]
6590 public static extern global::System.IntPtr
CFxDocumentManager_OpenDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref
OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, [MarshalAs(UnmanagedType.LPWStr)]
String jarg5);
6592 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_1")]
6593 public static extern global::System.IntPtr
CFxDocumentManager_OpenDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref
OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6595 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_2")]
6598 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_CloseDocument")]
6601 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetActiveDocument")]
6604 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_SetActiveDocument__SWIG_0")]
6607 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_SetActiveDocument__SWIG_1")]
6610 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentCount")]
6613 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByIndex")]
6616 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByFxNumber")]
6619 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByFileName")]
6622 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_GetFxDocument")]
6625 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_AddReactor")]
6626 public static extern void CFxDocumentManager_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6628 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_RemoveReactor")]
6631 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_CreateDocumentIterator")]
6634 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_PushResourceHandle")]
6637 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_PushCadResourceHandle")]
6640 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManager_PopResourceHandle")]
6643 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryObject")]
6646 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObject_IsCommand")]
6649 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObject_IsArg")]
6652 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObject_ToString")]
6653 public static extern bool CFxHistoryObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6655 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObject_Copy")]
6656 public static extern global::System.IntPtr
CFxHistoryObject_Copy(global::System.Runtime.InteropServices.HandleRef jarg1);
6658 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryArg")]
6661 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryArg_GetData")]
6664 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryArg_SetData")]
6665 public static extern void CFxHistoryArg_SetData(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6667 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryArg_Create")]
6670 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryArg_Cast")]
6671 public static extern global::System.IntPtr
CFxHistoryArg_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
6673 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryCommand")]
6676 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetNameLocal")]
6679 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetNameGlobal")]
6682 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetFlags")]
6685 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetArgCount")]
6688 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetArg")]
6689 public static extern global::System.IntPtr
CFxHistoryCommand_GetArg(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6691 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_AddArg")]
6692 public static extern void CFxHistoryCommand_AddArg(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6694 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_Create")]
6695 public static extern global::System.IntPtr
CFxHistoryCommand_Create(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
6697 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_Cast")]
6700 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Clear")]
6703 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Add")]
6704 public static extern void CFxHistoryObjectArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6706 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_size")]
6709 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_capacity")]
6712 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_reserve")]
6715 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_0")]
6718 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_1")]
6721 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_2")]
6724 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_getitemcopy")]
6727 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_getitem")]
6730 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_setitem")]
6731 public static extern void CFxHistoryObjectArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6733 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_AddRange")]
6734 public static extern void CFxHistoryObjectArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6736 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_GetRange")]
6739 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Insert")]
6740 public static extern void CFxHistoryObjectArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6742 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_InsertRange")]
6743 public static extern void CFxHistoryObjectArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6745 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_RemoveAt")]
6748 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_RemoveRange")]
6751 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Repeat")]
6754 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Reverse__SWIG_0")]
6757 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Reverse__SWIG_1")]
6760 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_SetRange")]
6761 public static extern void CFxHistoryObjectArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6763 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Contains")]
6764 public static extern bool CFxHistoryObjectArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6766 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_IndexOf")]
6767 public static extern int CFxHistoryObjectArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6769 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_LastIndexOf")]
6772 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Remove")]
6773 public static extern bool CFxHistoryObjectArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6775 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryObjectArray")]
6778 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_cast")]
6781 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_desc")]
6784 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_isA")]
6785 public static extern IntPtr
CFxDocument_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6787 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_queryX")]
6788 public static extern IntPtr
CFxDocument_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6790 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_createObject")]
6793 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDocument")]
6796 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxDisplayDevice")]
6799 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxDatabase__SWIG_0")]
6802 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxAPI")]
6803 public static extern global::System.IntPtr
CFxDocument_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1);
6805 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxUserIO")]
6808 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetActiveFxView")]
6811 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxMainSelectionSet")]
6814 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxWorkingSelectionSet")]
6817 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_CreateSelectionSet__SWIG_0")]
6820 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_CreateSelectionSet__SWIG_1")]
6823 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxInputPointManager")]
6826 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetHistory")]
6829 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetCommandWindowHistory")]
6832 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_AttachDatabase")]
6835 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetOverallWindowHandle")]
6838 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetDocumentWindowHandle")]
6841 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxScriptEngine")]
6844 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxCommandContext")]
6847 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_GetFxNumber")]
6850 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsInsideSelect")]
6853 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsInsideEntsel")]
6856 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsInsideNEntsel")]
6859 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsInsideDragSelectSequence")]
6862 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsInsideDragDropSequence")]
6865 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsValid")]
6868 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_Redraw")]
6871 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_ShrinkMemory")]
6874 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsRefeditActive")]
6877 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_IsBEditActive")]
6880 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ACTIVE_DOCUMENT")]
6883 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxScriptEngine")]
6886 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxScriptEngine_LoadScript")]
6887 public static extern bool CFxScriptEngine_LoadScript(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6889 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxScriptEngine_PauseScript")]
6892 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxScriptEngine_ResumeScript")]
6895 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxScriptEngine_Restart")]
6898 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxScriptEngine_IsActive")]
6901 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxScriptEngine")]
6904 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_cast")]
6907 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_desc")]
6910 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_isA")]
6913 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_queryX")]
6916 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_createObject")]
6919 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDocumentIterator")]
6922 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_Done")]
6925 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_Step")]
6928 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_Document")]
6931 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_Seek")]
6934 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_Start")]
6937 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_getRealClassName")]
6940 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_cast")]
6943 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_desc")]
6946 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_isA")]
6949 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_queryX")]
6952 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_createObject")]
6955 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxCommandContext")]
6958 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetFxDocument__SWIG_0")]
6961 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetFxMainSelectionSet")]
6964 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetActiveCommandName")]
6967 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetTopGroupName")]
6970 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_SetTopGroupName")]
6973 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsQuiescent")]
6976 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsSetVarActive")]
6979 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsCommandActive")]
6982 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsLISPActive")]
6985 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsTransparentCommandActive")]
6988 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsScriptActive")]
6991 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_IsMultipleActive")]
6994 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetCommandStackDepth")]
6997 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_GetInitdia")]
7000 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_SetExpressionToExecute")]
7003 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxCommandContext")]
7006 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxDocumentManagerReactor")]
7009 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDocumentManagerReactor")]
7012 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_cast")]
7015 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_desc")]
7018 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_isA")]
7021 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_isASwigExplicitCFxDocumentManagerReactor")]
7024 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_queryX")]
7027 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_queryXSwigExplicitCFxDocumentManagerReactor")]
7030 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_createObject")]
7033 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateStarted")]
7036 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateStartedSwigExplicitCFxDocumentManagerReactor")]
7039 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreated")]
7042 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreatedSwigExplicitCFxDocumentManagerReactor")]
7045 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDestroyed")]
7048 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDestroyedSwigExplicitCFxDocumentManagerReactor")]
7051 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentDestroyed")]
7052 public static extern void CFxDocumentManagerReactor_DocumentDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7054 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentDestroyedSwigExplicitCFxDocumentManagerReactor")]
7057 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseAttached")]
7060 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseAttachedSwigExplicitCFxDocumentManagerReactor")]
7063 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseDetached")]
7066 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseDetachedSwigExplicitCFxDocumentManagerReactor")]
7069 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeActivated")]
7072 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeActivatedSwigExplicitCFxDocumentManagerReactor")]
7075 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDeactivated")]
7078 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDeactivatedSwigExplicitCFxDocumentManagerReactor")]
7081 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivated")]
7084 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivatedSwigExplicitCFxDocumentManagerReactor")]
7087 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateCanceled")]
7090 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateCanceledSwigExplicitCFxDocumentManagerReactor")]
7093 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentBecameCurrent")]
7096 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentBecameCurrentSwigExplicitCFxDocumentManagerReactor")]
7099 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivationModified")]
7102 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivationModifiedSwigExplicitCFxDocumentManagerReactor")]
7105 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentPreOpen")]
7106 public static extern void CFxDocumentManagerReactor_DocumentPreOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4,
int jarg5);
7108 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentPreOpenSwigExplicitCFxDocumentManagerReactor")]
7111 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_director_connect")]
7112 public static extern void CFxDocumentManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_0 delegate0,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_1 delegate1,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_2 delegate2,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_3 delegate3,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_4 delegate4,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_5 delegate5,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_6 delegate6,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_7 delegate7,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_8 delegate8,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_9 delegate9,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_10 delegate10,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_11 delegate11,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_12 delegate12,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_13 delegate13,
CFxDocumentManagerReactor.
SwigDelegateCFxDocumentManagerReactor_14 delegate14);
7114 [DllImport(
"FxManaged.dll", EntryPoint=
7115"CSharp_new_CFxEditorReactor"
7120 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxEditorReactor")]
7123 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_desc")]
7126 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_isA")]
7129 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_isASwigExplicitCFxEditorReactor")]
7132 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_queryX")]
7135 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_queryXSwigExplicitCFxEditorReactor")]
7138 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameCreated")]
7141 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameCreatedSwigExplicitCFxEditorReactor")]
7144 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameDestroyed")]
7147 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameDestroyedSwigExplicitCFxEditorReactor")]
7150 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_appActivated")]
7153 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_appActivatedSwigExplicitCFxEditorReactor")]
7156 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_appDeactivated")]
7159 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_appDeactivatedSwigExplicitCFxEditorReactor")]
7162 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_windowStateChanged")]
7165 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_windowStateChangedSwigExplicitCFxEditorReactor")]
7168 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetCreated")]
7171 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetCreatedSwigExplicitCFxEditorReactor")]
7174 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetDestroyed")]
7177 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetDestroyedSwigExplicitCFxEditorReactor")]
7180 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_gripEditCustomOp")]
7181 public static extern void CFxEditorReactor_gripEditCustomOp(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4);
7183 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_gripEditCustomOpSwigExplicitCFxEditorReactor")]
7186 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_beginSaveEx")]
7187 public static extern void CFxEditorReactor_beginSaveEx(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4,
int jarg5);
7189 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_beginSaveExSwigExplicitCFxEditorReactor")]
7192 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_cancelDwgOpen")]
7193 public static extern void CFxEditorReactor_cancelDwgOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7195 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_cancelDwgOpenSwigExplicitCFxEditorReactor")]
7198 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_closeAborted")]
7201 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_closeAbortedSwigExplicitCFxEditorReactor")]
7204 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_beginModalState")]
7207 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_beginModalStateSwigExplicitCFxEditorReactor")]
7210 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_endModalState")]
7213 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_endModalStateSwigExplicitCFxEditorReactor")]
7216 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_director_connect")]
7217 public static extern void CFxEditorReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_0 delegate0,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_1 delegate1,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_2 delegate2,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_3 delegate3,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_4 delegate4,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_5 delegate5,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_6 delegate6,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_7 delegate7,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_8 delegate8,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_9 delegate9,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_10 delegate10,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_11 delegate11,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_12 delegate12,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_13 delegate13,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_14 delegate14,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_15 delegate15,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_16 delegate16,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_17 delegate17,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_18 delegate18,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_19 delegate19,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_20 delegate20,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_21 delegate21,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_22 delegate22,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_23 delegate23,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_24 delegate24,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_25 delegate25,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_26 delegate26,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_27 delegate27,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_28 delegate28,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_29 delegate29,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_30 delegate30,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_31 delegate31,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_32 delegate32,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_33 delegate33,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_34 delegate34,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_35 delegate35,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_36 delegate36,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_37 delegate37,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_38 delegate38,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_39 delegate39,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_40 delegate40,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_41 delegate41,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_42 delegate42,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_43 delegate43,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_44 delegate44,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_45 delegate45,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_46 delegate46,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_47 delegate47,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_48 delegate48,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_49 delegate49,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_50 delegate50,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_51 delegate51,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_52 delegate52,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_53 delegate53,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_54 delegate54,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_55 delegate55,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_56 delegate56,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_57 delegate57,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_58 delegate58,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_59 delegate59,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_60 delegate60,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_61 delegate61,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_62 delegate62,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_63 delegate63,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_64 delegate64,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_65 delegate65,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_66 delegate66,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_67 delegate67,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_68 delegate68,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_69 delegate69,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_70 delegate70,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_71 delegate71,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_72 delegate72,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_73 delegate73,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_74 delegate74,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_75 delegate75,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_76 delegate76,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_77 delegate77,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_78 delegate78,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_79 delegate79,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_80 delegate80,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_81 delegate81,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_82 delegate82,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_83 delegate83,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_84 delegate84,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_85 delegate85,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_86 delegate86,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_87 delegate87,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_88 delegate88,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_89 delegate89,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_90 delegate90,
CFxEditorReactor.
SwigDelegateCFxEditorReactor_91 delegate91);
7219 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxInputContextReactor")]
7222 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxInputContextReactor")]
7225 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_cast")]
7228 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_desc")]
7231 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_isA")]
7234 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_isASwigExplicitCFxInputContextReactor")]
7237 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_queryX")]
7240 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_queryXSwigExplicitCFxInputContextReactor")]
7243 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_createObject")]
7246 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginQuiescentState")]
7249 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginQuiescentStateSwigExplicitCFxInputContextReactor")]
7252 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndQuiescentState")]
7255 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndQuiescentStateSwigExplicitCFxInputContextReactor")]
7258 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetPoint")]
7261 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetPointSwigExplicitCFxInputContextReactor")]
7264 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetPoint")]
7265 public static extern void CFxInputContextReactor_EndGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7267 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetPointSwigExplicitCFxInputContextReactor")]
7270 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetAngle")]
7273 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetAngleSwigExplicitCFxInputContextReactor")]
7276 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetAngle")]
7277 public static extern void CFxInputContextReactor_EndGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
double jarg4);
7279 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetAngleSwigExplicitCFxInputContextReactor")]
7282 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetDistance")]
7285 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetDistanceSwigExplicitCFxInputContextReactor")]
7288 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetDistance")]
7289 public static extern void CFxInputContextReactor_EndGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
double jarg4);
7291 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetDistanceSwigExplicitCFxInputContextReactor")]
7294 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetOrientation")]
7297 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetOrientationSwigExplicitCFxInputContextReactor")]
7300 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetOrientation")]
7303 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetOrientationSwigExplicitCFxInputContextReactor")]
7306 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetCorner")]
7309 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetCornerSwigExplicitCFxInputContextReactor")]
7312 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetCorner")]
7313 public static extern void CFxInputContextReactor_EndGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7315 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetCornerSwigExplicitCFxInputContextReactor")]
7318 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetScaleFactor")]
7321 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetScaleFactorSwigExplicitCFxInputContextReactor")]
7324 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetScaleFactor")]
7327 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetScaleFactorSwigExplicitCFxInputContextReactor")]
7330 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetString")]
7333 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetStringSwigExplicitCFxInputContextReactor")]
7336 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetString")]
7337 public static extern void CFxInputContextReactor_EndGetString(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7339 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetStringSwigExplicitCFxInputContextReactor")]
7342 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetKeyword")]
7345 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetKeywordSwigExplicitCFxInputContextReactor")]
7348 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetKeyword")]
7349 public static extern void CFxInputContextReactor_EndGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7351 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetKeywordSwigExplicitCFxInputContextReactor")]
7354 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetInteger")]
7357 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetIntegerSwigExplicitCFxInputContextReactor")]
7360 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetInteger")]
7361 public static extern void CFxInputContextReactor_EndGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4);
7363 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetIntegerSwigExplicitCFxInputContextReactor")]
7366 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileName")]
7369 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNameSwigExplicitCFxInputContextReactor")]
7372 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileName")]
7373 public static extern void CFxInputContextReactor_EndGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7375 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNameSwigExplicitCFxInputContextReactor")]
7378 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNames")]
7381 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNamesSwigExplicitCFxInputContextReactor")]
7384 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNames")]
7385 public static extern void CFxInputContextReactor_EndGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7387 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNamesSwigExplicitCFxInputContextReactor")]
7390 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetColor")]
7393 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetColorSwigExplicitCFxInputContextReactor")]
7396 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetColor")]
7397 public static extern void CFxInputContextReactor_EndGetColor(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4);
7399 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetColorSwigExplicitCFxInputContextReactor")]
7402 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetReal")]
7403 public static extern void CFxInputContextReactor_BeginGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, out
double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7405 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetRealSwigExplicitCFxInputContextReactor")]
7408 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetReal")]
7409 public static extern void CFxInputContextReactor_EndGetReal(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
double jarg4);
7411 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetRealSwigExplicitCFxInputContextReactor")]
7414 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginEntsel")]
7417 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginEntselSwigExplicitCFxInputContextReactor")]
7420 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndEntsel")]
7421 public static extern void CFxInputContextReactor_EndEntsel(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7423 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndEntselSwigExplicitCFxInputContextReactor")]
7426 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginNentsel")]
7429 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginNentselSwigExplicitCFxInputContextReactor")]
7432 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndNentsel")]
7433 public static extern void CFxInputContextReactor_EndNentsel(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7435 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndNentselSwigExplicitCFxInputContextReactor")]
7438 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginSSGet")]
7441 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginSSGetSwigExplicitCFxInputContextReactor")]
7444 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndSSGet")]
7445 public static extern void CFxInputContextReactor_EndSSGet(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7447 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndSSGetSwigExplicitCFxInputContextReactor")]
7450 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginDragSequence")]
7453 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginDragSequenceSwigExplicitCFxInputContextReactor")]
7456 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndDragSequence")]
7457 public static extern void CFxInputContextReactor_EndDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7459 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndDragSequenceSwigExplicitCFxInputContextReactor")]
7462 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_GetInputContextManager")]
7465 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_director_connect")]
7466 public static extern void CFxInputContextReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_0 delegate0,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_1 delegate1,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_2 delegate2,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_3 delegate3,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_4 delegate4,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_5 delegate5,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_6 delegate6,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_7 delegate7,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_8 delegate8,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_9 delegate9,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_10 delegate10,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_11 delegate11,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_12 delegate12,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_13 delegate13,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_14 delegate14,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_15 delegate15,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_16 delegate16,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_17 delegate17,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_18 delegate18,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_19 delegate19,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_20 delegate20,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_21 delegate21,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_22 delegate22,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_23 delegate23,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_24 delegate24,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_25 delegate25,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_26 delegate26,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_27 delegate27,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_28 delegate28,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_29 delegate29,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_30 delegate30,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_31 delegate31,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_32 delegate32,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_33 delegate33,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_34 delegate34,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_35 delegate35,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_36 delegate36,
CFxInputContextReactor.
SwigDelegateCFxInputContextReactor_37 delegate37);
7468 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_BeginModifier")]
7471 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_EndModifier")]
7472 public static extern void CFxInputContextReactorExtended_EndModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7474 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxInputContextReactorExtended")]
7477 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHostAppServices")]
7480 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_doFullCRCCheck")]
7483 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_getMappedFont__SWIG_0")]
7484 public static extern bool CFxHostAppServices_getMappedFont__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4);
7486 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_getMappedFont__SWIG_1")]
7487 public static extern bool CFxHostAppServices_getMappedFont__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7489 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_isSysVarAllowed")]
7492 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_getRawName")]
7493 public static extern global::System.IntPtr
CFxHostAppServices_getRawName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7495 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_getDsName")]
7496 public static extern global::System.IntPtr
CFxHostAppServices_getDsName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7498 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_translateAlias")]
7499 public static extern global::System.IntPtr
CFxHostAppServices_translateAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7501 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_LoadVariables")]
7504 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_SaveVariables")]
7507 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_SetVariablesDefault")]
7510 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxMainFrame")]
7513 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetStatusBar")]
7516 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetWindowHandle")]
7519 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetFxWidget")]
7522 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandLineWindowHandle")]
7525 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandHistoryWindowHandle")]
7528 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetInput")]
7529 public static extern global::System.IntPtr
CFxMainFrame_GetInput(global::System.Runtime.InteropServices.HandleRef jarg1);
7531 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_SetInput")]
7532 public static extern void CFxMainFrame_SetInput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7534 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_ShowPropertiesWindow")]
7537 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_ShowCommandWindow")]
7540 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_ShowMatrixToolbarWindow")]
7543 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_IsTextWindowVisible")]
7546 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_ClearCommandWindow")]
7549 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_ShowTextWindow")]
7552 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleMain_set")]
7555 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleMain_get")]
7558 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleSecond_set")]
7561 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleSecond_get")]
7564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountMain_set")]
7567 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountMain_get")]
7570 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_set")]
7573 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_get")]
7576 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxMainFrame_CFxCommandWindowInfo")]
7579 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxMainFrame_CFxCommandWindowInfo")]
7582 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandWindowInfo")]
7585 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_hideApplicationWindows")]
7588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_SetTitleSuffix")]
7589 public static extern void CFxMainFrame_SetTitleSuffix(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_IsVisible")]
7594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SetVisible__SWIG_0")]
7597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SetVisible__SWIG_1")]
7600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SaveState")]
7603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxMainFrame_CFxToolBars")]
7606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxMainFrame_GetToolBars")]
7609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_fxToolBars")]
7612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_cast")]
7615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_desc")]
7618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_isA")]
7621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_queryX")]
7624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_createObject")]
7627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxInputPointManager")]
7630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AddInputContextReactor")]
7633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_RemoveInputContextReactor")]
7636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AddTracker")]
7637 public static extern void CFxInputPointManager_AddTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
7639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_RemoveTracker")]
7642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetHitTestInfo")]
7645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsUpdateTrackersActive")]
7648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsDrawTrackersActive")]
7651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AddGrVecsVector")]
7652 public static extern void CFxInputPointManager_AddGrVecsVector(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5,
int jarg6);
7654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetPrimaryPoint")]
7657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetPrimaryClickPoint")]
7660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetBasePoint")]
7663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetBasePoint")]
7666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetRubberLinePoint")]
7669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOtrackPoint")]
7672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRubberLinePoint")]
7675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRubberLineClickPoint")]
7678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorPoint")]
7681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorClickPoint")]
7684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOrthoPoint")]
7687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOsnapPoint")]
7690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetOsnapPoint__SWIG_0")]
7693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetOsnapPoint__SWIG_1")]
7694 public static extern void CFxInputPointManager_SetOsnapPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSet__SWIG_0")]
7699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSet__SWIG_1")]
7702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSetCopy")]
7705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOsnapCalculation")]
7708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOsnapCalculationEnabled")]
7711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOtrackCalculation")]
7714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOtrackCalculationEnabled")]
7717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOrthoCalculation")]
7720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOrthoCalculationEnabled")]
7723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableGripsCalculation")]
7726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsGripsCalculationEnabled")]
7729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableSnapCalculation")]
7732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsSnapCalculationEnabled")]
7735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOtrackPolarCalculationEnabled")]
7738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_IsCursorSnapping")]
7741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOtrackPolarCalculation")]
7744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCurrentOSMODE")]
7747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetCurrentOSMODE")]
7750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkingPlane")]
7753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AddOtrackBasePoint__SWIG_0")]
7756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AddOtrackBasePoint__SWIG_1")]
7759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_ClearOtrackBasePoints")]
7762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SkipCurrentInputPoint__SWIG_0")]
7765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SkipCurrentInputPoint__SWIG_1")]
7768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetFxDocument")]
7771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_WorldToWorkingPlaneMatrix")]
7774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkingPlaneSystem")]
7775 public static extern void CFxInputPointManager_GetWorkingPlaneSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorSystem")]
7778 public static extern void CFxInputPointManager_GetCursorSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetElevatedUcsPlane")]
7781 public static extern void CFxInputPointManager_GetElevatedUcsPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkPlane")]
7784 public static extern void CFxInputPointManager_GetWorkPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_AllowAbortOperation")]
7789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_OperationAborted")]
7792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_ResetAbortOperation")]
7795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_0")]
7796 public static extern bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1")]
7799 public static extern bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_2")]
7804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetPrimaryPoint__SWIG_0")]
7807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetPrimaryPoint__SWIG_1")]
7810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_CacheMe")]
7811 public static extern void CFxInputPointManager_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3,
int jarg4);
7813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRibbonContextualState")]
7816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetRibbonContextualState")]
7819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetDraggingPreview")]
7822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SetDraggingPreview")]
7825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_GetLastOsnapPoint")]
7828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxRibbonContextualState")]
7831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRibbonContextualState_GetType")]
7834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRibbonContextualState_GetData")]
7837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_0")]
7840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_1")]
7841 public static extern global::System.IntPtr
new_CFxString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_2")]
7846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_3")]
7847 public static extern global::System.IntPtr
new_CFxString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
7849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_4")]
7850 public static extern global::System.IntPtr
new_CFxString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
7852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_5")]
7855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxString__SWIG_6")]
7856 public static extern global::System.IntPtr
new_CFxString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1);
7858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxString")]
7859 public static extern void delete_CFxString(global::System.Runtime.InteropServices.HandleRef jarg1);
7861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_getAllocLength")]
7864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_getLength")]
7867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_isNull")]
7868 public static extern bool CFxString_isNull(global::System.Runtime.InteropServices.HandleRef jarg1);
7870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_isEmpty")]
7871 public static extern bool CFxString_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
7873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_empty")]
7874 public static extern void CFxString_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
7876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_clear")]
7877 public static extern void CFxString_clear(global::System.Runtime.InteropServices.HandleRef jarg1);
7879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_getAtA")]
7880 public static extern char CFxString_getAtA(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_getAtWW")]
7883 public static extern global::System.IntPtr
CFxString_getAtWW(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_getAtWU")]
7886 public static extern char CFxString_getAtWU(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_ansi_str")]
7891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_from_ansi_str__SWIG_0")]
7894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_from_ansi_str__SWIG_1")]
7897 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_utf8_str")]
7898 public static extern global::System.IntPtr
CFxString_utf8_str(global::System.Runtime.InteropServices.HandleRef jarg1);
7900 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_from_utf8_str__SWIG_0")]
7903 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_from_utf8_str__SWIG_1")]
7906 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_wide_strW")]
7907 public static extern global::System.IntPtr
CFxString_wide_strW(global::System.Runtime.InteropServices.HandleRef jarg1);
7909 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_wide_strU")]
7910 [
return: MarshalAs(UnmanagedType.LPWStr)]
7913 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_AsString")]
7914 [
return: MarshalAs(UnmanagedType.LPWStr)]
7917 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_Assign__SWIG_0")]
7918 public static extern global::System.IntPtr
CFxString_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7920 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_Assign__SWIG_1")]
7921 public static extern global::System.IntPtr
CFxString_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2);
7923 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compareA")]
7924 public static extern int CFxString_compareA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
7926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_0")]
7927 public static extern int CFxString_compare__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_1")]
7932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_2")]
7933 public static extern int CFxString_compare__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compareNoCaseA")]
7938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_0")]
7941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_1")]
7944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_2")]
7947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_0")]
7950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_1")]
7951 public static extern bool CFxString_equalNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_2")]
7954 public static extern bool CFxString_equalNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7956 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_mid__SWIG_0")]
7957 public static extern global::System.IntPtr
CFxString_mid__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
7959 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_mid__SWIG_1")]
7960 public static extern global::System.IntPtr
CFxString_mid__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7962 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_left")]
7963 public static extern global::System.IntPtr
CFxString_left(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7965 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_right")]
7966 public static extern global::System.IntPtr
CFxString_right(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
7968 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_makeUpper")]
7969 public static extern global::System.IntPtr
CFxString_makeUpper(global::System.Runtime.InteropServices.HandleRef jarg1);
7971 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_makeLower")]
7972 public static extern global::System.IntPtr
CFxString_makeLower(global::System.Runtime.InteropServices.HandleRef jarg1);
7974 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_0")]
7977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_0")]
7980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRightA__SWIG_0")]
7983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRightW__SWIG_0")]
7984 public static extern global::System.IntPtr
CFxString_trimRightW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRightW__SWIG_1")]
7989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRightA__SWIG_1")]
7992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_1")]
7993 public static extern global::System.IntPtr
CFxString_trimRight__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_2")]
7998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeftA__SWIG_0")]
8001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeftW__SWIG_0")]
8002 public static extern global::System.IntPtr
CFxString_trimLeftW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeftW__SWIG_1")]
8007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeftA__SWIG_1")]
8010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_1")]
8011 public static extern global::System.IntPtr
CFxString_trimLeft__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_2")]
8016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replaceA__SWIG_0")]
8017 public static extern global::System.IntPtr
CFxString_replaceA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2,
char jarg3);
8019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replaceW__SWIG_0")]
8020 public static extern global::System.IntPtr
CFxString_replaceW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replaceW__SWIG_1")]
8023 public static extern global::System.IntPtr
CFxString_replaceW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2,
char jarg3);
8025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replaceA__SWIG_1")]
8026 public static extern global::System.IntPtr
CFxString_replaceA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
string jarg3);
8028 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replace__SWIG_0")]
8029 public static extern global::System.IntPtr
CFxString_replace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8031 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_replace__SWIG_1")]
8032 public static extern global::System.IntPtr
CFxString_replace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2, [MarshalAs(UnmanagedType.LPWStr)]
String jarg3);
8034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_removeA")]
8035 public static extern int CFxString_removeA(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2);
8037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_removeW__SWIG_0")]
8038 public static extern int CFxString_removeW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_removeW__SWIG_1")]
8043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insertA__SWIG_0")]
8046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insertW__SWIG_0")]
8047 public static extern int CFxString_insertW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insertW__SWIG_1")]
8052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insertA__SWIG_1")]
8055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insert__SWIG_0")]
8056 public static extern int CFxString_insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_insert__SWIG_1")]
8061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_deleteChars__SWIG_0")]
8064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_deleteChars__SWIG_1")]
8067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_0")]
8070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_0")]
8071 public static extern int CFxString_findW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_1")]
8076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_reverseFindA")]
8079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_reverseFindW__SWIG_0")]
8080 public static extern int CFxString_reverseFindW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_reverseFindW__SWIG_1")]
8085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_1")]
8088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_2")]
8089 public static extern int CFxString_findW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
8091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_3")]
8094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findOneOfA")]
8095 public static extern int CFxString_findOneOfA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
8097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findOneOf__SWIG_0")]
8098 public static extern int CFxString_findOneOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findOneOf__SWIG_1")]
8103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_find__SWIG_0")]
8104 public static extern int CFxString_find__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_2")]
8109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_find__SWIG_1")]
8110 public static extern int CFxString_find__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_find__SWIG_2")]
8115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_3")]
8116 public static extern int CFxString_findA__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2,
int jarg3);
8118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_find__SWIG_3")]
8119 public static extern int CFxString_find__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
8121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_find__SWIG_4")]
8122 public static extern int CFxString_find__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2,
int jarg3);
8124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_format__SWIG_0")]
8125 public static extern global::System.IntPtr
CFxString_format__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2);
8127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_format__SWIG_1")]
8128 public static extern global::System.IntPtr
CFxString_format__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_formatA")]
8131 public static extern global::System.IntPtr
CFxString_formatA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2);
8133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_format__SWIG_2")]
8134 public static extern global::System.IntPtr
CFxString_format__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2, [MarshalAs(UnmanagedType.LPWStr)]
String jarg3);
8136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_format__SWIG_3")]
8137 public static extern global::System.IntPtr
CFxString_format__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]
String jarg3);
8139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_vformatA")]
8140 public static extern global::System.IntPtr
CFxString_vformatA(global::System.Runtime.InteropServices.HandleRef jarg1,
string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_vformat__SWIG_0")]
8143 public static extern global::System.IntPtr
CFxString_vformat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_vformat__SWIG_1")]
8146 public static extern global::System.IntPtr
CFxString_vformat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]
String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_GetCodePage")]
8151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_SetCodePage")]
8154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_SplitA")]
8155 public static extern global::System.IntPtr
CFxString_SplitA(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2);
8157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_SplitW__SWIG_0")]
8158 public static extern global::System.IntPtr
CFxString_SplitW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_SplitW__SWIG_1")]
8161 public static extern global::System.IntPtr
CFxString_SplitW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2);
8163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_GetCadCodePage")]
8166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_EncodeHTML")]
8169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_DecodeHTML")]
8172 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_0")]
8173 public static extern global::System.IntPtr
CFxString_arg__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
long jarg2,
int jarg3,
int jarg4, ushort jarg5);
8175 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_1")]
8176 public static extern global::System.IntPtr
CFxString_arg__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
long jarg2,
int jarg3,
int jarg4);
8178 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_2")]
8179 public static extern global::System.IntPtr
CFxString_arg__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1,
long jarg2,
int jarg3);
8181 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_3")]
8182 public static extern global::System.IntPtr
CFxString_arg__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1,
long jarg2);
8184 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_4")]
8185 public static extern global::System.IntPtr
CFxString_arg__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2,
int jarg3,
int jarg4, ushort jarg5);
8187 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_5")]
8188 public static extern global::System.IntPtr
CFxString_arg__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2,
int jarg3,
int jarg4);
8190 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_6")]
8191 public static extern global::System.IntPtr
CFxString_arg__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2,
int jarg3);
8193 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_7")]
8194 public static extern global::System.IntPtr
CFxString_arg__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2);
8196 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_8")]
8197 public static extern global::System.IntPtr
CFxString_arg__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4, ushort jarg5);
8199 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_9")]
8200 public static extern global::System.IntPtr
CFxString_arg__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3,
int jarg4);
8202 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_10")]
8203 public static extern global::System.IntPtr
CFxString_arg__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
8205 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_11")]
8206 public static extern global::System.IntPtr
CFxString_arg__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
8208 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_12")]
8209 public static extern global::System.IntPtr
CFxString_arg__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2,
int jarg3,
int jarg4, ushort jarg5);
8211 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_13")]
8212 public static extern global::System.IntPtr
CFxString_arg__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2,
int jarg3,
int jarg4);
8214 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_14")]
8215 public static extern global::System.IntPtr
CFxString_arg__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2,
int jarg3);
8217 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_15")]
8218 public static extern global::System.IntPtr
CFxString_arg__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8220 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_24")]
8221 public static extern global::System.IntPtr
CFxString_arg__SWIG_24(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
int jarg3,
int jarg4, ushort jarg5);
8223 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_25")]
8224 public static extern global::System.IntPtr
CFxString_arg__SWIG_25(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
int jarg3,
int jarg4);
8226 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_26")]
8227 public static extern global::System.IntPtr
CFxString_arg__SWIG_26(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2,
int jarg3);
8229 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_27")]
8230 public static extern global::System.IntPtr
CFxString_arg__SWIG_27(global::System.Runtime.InteropServices.HandleRef jarg1,
short jarg2);
8232 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_28")]
8233 public static extern global::System.IntPtr
CFxString_arg__SWIG_28(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2,
int jarg3,
int jarg4, ushort jarg5);
8235 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_29")]
8236 public static extern global::System.IntPtr
CFxString_arg__SWIG_29(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2,
int jarg3,
int jarg4);
8238 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_30")]
8239 public static extern global::System.IntPtr
CFxString_arg__SWIG_30(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2,
int jarg3);
8241 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_31")]
8242 public static extern global::System.IntPtr
CFxString_arg__SWIG_31(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
8244 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_32")]
8245 public static extern global::System.IntPtr
CFxString_arg__SWIG_32(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
char jarg4,
int jarg5, ushort jarg6);
8247 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_33")]
8248 public static extern global::System.IntPtr
CFxString_arg__SWIG_33(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
char jarg4,
int jarg5);
8250 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_34")]
8251 public static extern global::System.IntPtr
CFxString_arg__SWIG_34(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3,
char jarg4);
8253 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_35")]
8254 public static extern global::System.IntPtr
CFxString_arg__SWIG_35(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2,
int jarg3);
8256 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_36")]
8257 public static extern global::System.IntPtr
CFxString_arg__SWIG_36(global::System.Runtime.InteropServices.HandleRef jarg1,
double jarg2);
8259 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_37")]
8260 public static extern global::System.IntPtr
CFxString_arg__SWIG_37(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2,
int jarg3, ushort jarg4);
8262 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_38")]
8263 public static extern global::System.IntPtr
CFxString_arg__SWIG_38(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2,
int jarg3);
8265 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_39")]
8266 public static extern global::System.IntPtr
CFxString_arg__SWIG_39(global::System.Runtime.InteropServices.HandleRef jarg1,
char jarg2);
8268 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_40")]
8269 public static extern global::System.IntPtr
CFxString_arg__SWIG_40(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, ushort jarg4);
8271 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_41")]
8272 public static extern global::System.IntPtr
CFxString_arg__SWIG_41(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
8274 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_42")]
8275 public static extern global::System.IntPtr
CFxString_arg__SWIG_42(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8277 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_43")]
8278 public static extern global::System.IntPtr
CFxString_arg__SWIG_43(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, ushort jarg4);
8280 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_44")]
8281 public static extern global::System.IntPtr
CFxString_arg__SWIG_44(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
8283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_45")]
8284 public static extern global::System.IntPtr
CFxString_arg__SWIG_45(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_46")]
8287 public static extern global::System.IntPtr
CFxString_arg__SWIG_46(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_47")]
8290 public static extern global::System.IntPtr
CFxString_arg__SWIG_47(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_48")]
8293 public static extern global::System.IntPtr
CFxString_arg__SWIG_48(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
8295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_49")]
8296 public static extern global::System.IntPtr
CFxString_arg__SWIG_49(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
8298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_50")]
8299 public static extern global::System.IntPtr
CFxString_arg__SWIG_50(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
8301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_51")]
8302 public static extern global::System.IntPtr
CFxString_arg__SWIG_51(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
8304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_52")]
8305 public static extern global::System.IntPtr
CFxString_arg__SWIG_52(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
8307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_53")]
8308 public static extern global::System.IntPtr
CFxString_arg__SWIG_53(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
8310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxString_multiArg")]
8311 public static extern global::System.IntPtr
CFxString_multiArg(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IsEqual__SWIG_3")]
8314 public static extern bool IsEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IsNotEqual__SWIG_3")]
8317 public static extern bool IsNotEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IsNotEqual__SWIG_4")]
8320 public static extern bool IsNotEqual__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_0")]
8325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_1")]
8326 public static extern global::System.IntPtr
new_KeywordPair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_2")]
8331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordPair_first_set")]
8332 public static extern void KeywordPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordPair_first_get")]
8335 public static extern global::System.IntPtr
KeywordPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordPair_second_set")]
8338 public static extern void KeywordPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordPair_second_get")]
8343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_KeywordPair")]
8346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Clear")]
8349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Add")]
8350 public static extern void KeywordVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_size")]
8355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_capacity")]
8358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_reserve")]
8361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_0")]
8364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_1")]
8367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_2")]
8370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_getitemcopy")]
8373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_getitem")]
8374 public static extern global::System.IntPtr
KeywordVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
8376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_setitem")]
8377 public static extern void KeywordVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_AddRange")]
8380 public static extern void KeywordVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8382 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_GetRange")]
8383 public static extern global::System.IntPtr
KeywordVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
8385 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Insert")]
8386 public static extern void KeywordVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8388 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_InsertRange")]
8389 public static extern void KeywordVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8391 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_RemoveAt")]
8394 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_RemoveRange")]
8397 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Repeat")]
8398 public static extern global::System.IntPtr
KeywordVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
8400 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Reverse__SWIG_0")]
8403 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_Reverse__SWIG_1")]
8406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_KeywordVector_SetRange")]
8407 public static extern void KeywordVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8409 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_KeywordVector")]
8412 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxKeywordArray_push_back")]
8413 public static extern void CFxKeywordArray_push_back(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8415 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxKeywordArray_sortit__SWIG_0")]
8416 public static extern void CFxKeywordArray_sortit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8418 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxKeywordArray_sortit__SWIG_1")]
8421 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxKeywordArray_global__SWIG_0")]
8424 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxKeywordArray_local__SWIG_0")]
8427 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxKeywordArray")]
8430 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxKeywordArray")]
8433 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHitTestInfo")]
8436 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseEvent")]
8439 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsDragEvent")]
8442 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardEvent")]
8445 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardPressEvent")]
8448 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardReleaseEvent")]
8451 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseWheel")]
8454 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesture")]
8457 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesturePan")]
8460 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesturePinch")]
8463 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGestureState")]
8466 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsFxEvent")]
8469 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetFxEventType")]
8472 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetMousePosition")]
8475 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetMousePositionF")]
8478 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftMouseButtonPressed")]
8481 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleMouseButtonPressed")]
8484 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightMouseButtonPressed")]
8487 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsShiftPressed")]
8490 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsCtrlPressed")]
8493 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsAltPressed")]
8496 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseMoved")]
8499 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonDown")]
8502 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonUp")]
8505 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonDown")]
8508 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonUp")]
8511 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonDown")]
8514 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonUp")]
8517 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseOverActiveViewport")]
8520 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetWheelDelta")]
8523 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetWheelOrientation")]
8526 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePanOffset")]
8529 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchScaleFactor")]
8532 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchCenterPoint")]
8535 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchRollAngle")]
8538 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGestureSwipeAngle")]
8541 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonTrippleClick")]
8544 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonTrippleClick")]
8547 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonTrippleClick")]
8550 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonDoubleClick")]
8553 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonDoubleClick")]
8556 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonDoubleClick")]
8559 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonClick")]
8562 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonClick")]
8565 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonClick")]
8568 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideDragSelectSequence")]
8571 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideDragDropSequence")]
8574 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsCancelPressed")]
8577 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsSpacePressed")]
8580 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsArrowUpPressed")]
8583 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsArrowDownPressed")]
8586 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsContinuousEvent")]
8589 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideLISP")]
8592 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideCommand")]
8595 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideSelect")]
8598 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetKey")]
8601 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetKeyText")]
8604 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetFxDocument")]
8607 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_EnableSystemCursorGraphics")]
8610 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_DisableSystemCursorGraphics")]
8613 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_SystemCursorDisableCount")]
8616 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_SkipNextRightMouseButtonUpEvent")]
8619 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_SkipKeyboardInput")]
8622 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetEvent")]
8625 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxOrthoPoint")]
8628 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOrthoPoint_Assign")]
8629 public static extern global::System.IntPtr
CFxOrthoPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8631 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOrthoPoint_GetPoint")]
8634 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxOsnapPoint_ConvertOsnapMode__SWIG_1")]
8638 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxOsnapPoint")]
8641 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_Assign")]
8642 public static extern global::System.IntPtr
CFxOsnapPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8644 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_Clear")]
8647 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_Set__SWIG_0")]
8648 public static extern void CFxOsnapPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8650 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_Set__SWIG_1")]
8651 public static extern void CFxOsnapPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
8653 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetMode")]
8656 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetModeName")]
8659 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetPoint")]
8662 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetSubentPath__SWIG_0")]
8665 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetSubentPath__SWIG_1")]
8668 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_IsEqualTo")]
8669 public static extern bool CFxOsnapPoint_IsEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3);
8671 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapSize")]
8674 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapDistance")]
8677 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapColor")]
8680 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetCenterSize")]
8683 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetCenterColor")]
8686 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOsnapPoint_ConvertOsnapMode")]
8689 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxOtrackPoint")]
8692 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_Assign")]
8693 public static extern global::System.IntPtr
CFxOtrackPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8695 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_Set__SWIG_0")]
8696 public static extern void CFxOtrackPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8698 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_Set__SWIG_1")]
8699 public static extern void CFxOtrackPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8701 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackType")]
8704 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetPoint")]
8707 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackBasePointCrossSize")]
8710 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackBasePointCrossColor")]
8713 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackLinesCrossSize")]
8716 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackLinesCrossColor")]
8719 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxStatusBar")]
8722 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_StartProgressor")]
8723 public static extern void CFxStatusBar_StartProgressor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8725 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_StopProgressor")]
8728 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_MeterProgress")]
8731 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_GetText")]
8732 public static extern global::System.IntPtr
CFxStatusBar_GetText(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
8734 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_SetText")]
8735 public static extern void CFxStatusBar_SetText(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
8737 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_RefreshCoords__SWIG_0")]
8738 public static extern void CFxStatusBar_RefreshCoords__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8740 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_RefreshCoords__SWIG_1")]
8741 public static extern void CFxStatusBar_RefreshCoords__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
bool jarg3);
8743 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_GetFxWidget")]
8746 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_GetWindowHandle")]
8749 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxStatusBar_GetSubControl")]
8752 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxLicenseInfo")]
8755 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_CheckOutLicense")]
8758 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_CheckInLicense")]
8761 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLicenseCheckedOut")]
8764 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsTrialExpired")]
8767 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLicenseHealthy")]
8770 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsNetworkConnectionLost")]
8773 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseType")]
8776 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsFullVersion")]
8779 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsUnregisteredVersion")]
8782 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsTrialVersion")]
8785 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseDays")]
8788 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseOptions")]
8791 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetHostID")]
8792 public static extern global::System.IntPtr
CFxLicenseInfo_GetHostID(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
8794 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseHostId")]
8797 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsProductKeyValid")]
8800 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsActivationCodeValid")]
8803 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_SaveActivationCode")]
8806 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicensePath")]
8809 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxDays")]
8812 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxShares")]
8815 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxCount")]
8818 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingProductMaxCount")]
8821 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingProductCurrentCount")]
8824 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsRoaming")]
8827 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetError")]
8830 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetGde")]
8831 public static extern global::System.IntPtr
CFxLicenseInfo_GetGde(global::System.Runtime.InteropServices.HandleRef jarg1);
8833 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetVersion")]
8836 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsPrerelease")]
8839 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_AllowsDongleActivation")]
8842 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_InAppleSandbox")]
8845 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsExtendedApiEnabled")]
8848 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsMFCUIEnabled")]
8851 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLispEnabled")]
8854 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_DisableLisp")]
8857 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_EnableLisp")]
8860 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsFibersEnabled")]
8863 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsDWFEnabled")]
8866 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_DisableDWF")]
8869 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsDWFSaveEnabled")]
8872 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsSHPEnabled")]
8875 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_CleanUp")]
8878 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseInfo_ValidateDongle")]
8881 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxLicenseInfo")]
8884 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxApplications")]
8887 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_GetStartupSuite")]
8888 public static extern void CFxApplications_GetStartupSuite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8890 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_GetApplicationsByDocument")]
8891 public static extern void CFxApplications_GetApplicationsByDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8893 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_GetExtendedApiModules")]
8896 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_LoadApplication")]
8897 public static extern global::System.IntPtr
CFxApplications_LoadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8899 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_UnloadApplication")]
8900 public static extern bool CFxApplications_UnloadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8902 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_FindApplication")]
8903 public static extern global::System.IntPtr
CFxApplications_FindApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8905 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_GetAppCount")]
8908 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_GetAppInfo")]
8911 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_FormatsFilterString")]
8914 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_DefaultFormat")]
8917 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_FileDescription")]
8918 public static extern global::System.IntPtr
CFxApplications_FileDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8920 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxApplications_CreateAppInfo")]
8921 public static extern global::System.IntPtr
CFxApplications_CreateAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8923 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSettings")]
8926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_HasGroup")]
8927 public static extern bool CFxSettings_HasGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_HasKey")]
8930 public static extern bool CFxSettings_HasKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_GetGroups")]
8933 public static extern global::System.IntPtr
CFxSettings_GetGroups(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_GetKeys")]
8936 public static extern global::System.IntPtr
CFxSettings_GetKeys(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_GetType")]
8939 public static extern int CFxSettings_GetType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_Read")]
8942 public static extern IntPtr
CFxSettings_Read(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
int jarg4);
8944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_Write")]
8945 public static extern void CFxSettings_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4);
8947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_RemoveKey")]
8948 public static extern void CFxSettings_RemoveKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSettings_RemoveGroup")]
8951 public static extern void CFxSettings_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxFileData")]
8956 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_Assign")]
8957 public static extern global::System.IntPtr
CFxFileData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8959 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_IsReadOnly")]
8962 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetReadOnly")]
8965 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetFilename")]
8968 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetPrettyFilename")]
8971 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetFilename")]
8972 public static extern void CFxFileData_SetFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8974 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetPrettyFilename")]
8975 public static extern void CFxFileData_SetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetType")]
8980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetType")]
8981 public static extern void CFxFileData_SetType(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
8983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetDwgVersion")]
8986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetDwgVersion")]
8989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetFlxVersion")]
8992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetFlxVersion")]
8995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_Lock")]
8996 public static extern void CFxFileData_Lock(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
8998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_IsLocked")]
9001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_IsLockedGlobal")]
9004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_IsCloudStorageFile")]
9007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetCloudStorageData")]
9010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_SetCloudStorageData")]
9011 public static extern void CFxFileData_SetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_IsNewFile")]
9016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_0")]
9019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_1")]
9022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_2")]
9025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxFileData_GetAutoName")]
9028 [DllImport(
"FxManaged.dll", EntryPoint=
9029"CSharp_new_CFxLayoutManagerReactor"
9034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_cast")]
9037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_desc")]
9040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_isA")]
9043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_isASwigExplicitCFxLayoutManagerReactor")]
9046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_queryX")]
9049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_queryXSwigExplicitCFxLayoutManagerReactor")]
9052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_createObject")]
9055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeDeactivated")]
9058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeDeactivatedSwigExplicitCFxLayoutManagerReactor")]
9061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeActivated")]
9064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeActivatedSwigExplicitCFxLayoutManagerReactor")]
9067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_getRealClassName")]
9070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxLayoutManagerReactor")]
9073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_director_connect")]
9074 public static extern void CFxLayoutManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_0 delegate0,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_1 delegate1,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_2 delegate2,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_3 delegate3,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_4 delegate4,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_5 delegate5,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_6 delegate6,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_7 delegate7,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_8 delegate8,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_9 delegate9,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_10 delegate10,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_11 delegate11,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_12 delegate12,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_13 delegate13,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_14 delegate14,
CFxLayoutManagerReactor.
SwigDelegateCFxLayoutManagerReactor_15 delegate15);
9076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxProfile")]
9077 public static extern void delete_CFxProfile(global::System.Runtime.InteropServices.HandleRef jarg1);
9079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetName")]
9080 public static extern global::System.IntPtr
CFxProfile_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
9082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetDescription")]
9085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetSettings")]
9088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetStorage")]
9089 public static extern global::System.IntPtr
CFxProfile_GetStorage(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
9091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetSystemFiles")]
9094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetRecentFiles")]
9097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_ResolveAlias")]
9098 public static extern global::System.IntPtr
CFxProfile_ResolveAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_LoadAliases")]
9103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_GetPreferences")]
9106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfile_Flush")]
9107 public static extern void CFxProfile_Flush(global::System.Runtime.InteropServices.HandleRef jarg1);
9109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxProfileManagerReactor")]
9112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillChange")]
9115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillChangeSwigExplicitCFxProfileManagerReactor")]
9118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileChanged")]
9121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileChangedSwigExplicitCFxProfileManagerReactor")]
9124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeReset")]
9127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeResetSwigExplicitCFxProfileManagerReactor")]
9130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileReset")]
9133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileResetSwigExplicitCFxProfileManagerReactor")]
9136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeSaved")]
9139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeSavedSwigExplicitCFxProfileManagerReactor")]
9142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeLoaded")]
9145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeLoadedSwigExplicitCFxProfileManagerReactor")]
9148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileSaved")]
9151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileSavedSwigExplicitCFxProfileManagerReactor")]
9154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileLoaded")]
9157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileLoadedSwigExplicitCFxProfileManagerReactor")]
9160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillReset")]
9163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillResetSwigExplicitCFxProfileManagerReactor")]
9166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileReset")]
9169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileResetSwigExplicitCFxProfileManagerReactor")]
9172 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeSaved")]
9173 public static extern void CFxProfileManagerReactor_profileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9175 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeSavedSwigExplicitCFxProfileManagerReactor")]
9178 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeLoaded")]
9179 public static extern void CFxProfileManagerReactor_profileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9181 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeLoadedSwigExplicitCFxProfileManagerReactor")]
9184 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileSaved")]
9187 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileSavedSwigExplicitCFxProfileManagerReactor")]
9190 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileLoaded")]
9193 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileLoadedSwigExplicitCFxProfileManagerReactor")]
9196 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxProfileManagerReactor")]
9199 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_director_connect")]
9200 public static extern void CFxProfileManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_0 delegate0,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_1 delegate1,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_2 delegate2,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_3 delegate3,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_4 delegate4,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_5 delegate5,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_6 delegate6,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_7 delegate7,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_8 delegate8,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_9 delegate9,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_10 delegate10,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_11 delegate11,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_12 delegate12,
CFxProfileManagerReactor.
SwigDelegateCFxProfileManagerReactor_13 delegate13);
9202 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileRegistryKey")]
9203 public static extern void CFxProfileManager_ProfileRegistryKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9205 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileListNames")]
9208 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileExport")]
9209 public static extern int CFxProfileManager_ProfileExport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9211 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileImport")]
9212 public static extern int CFxProfileManager_ProfileImport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
9214 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileDelete")]
9217 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileReset")]
9218 public static extern int CFxProfileManager_ProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9220 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileSetCurrent")]
9223 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGetCurrent")]
9226 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGetFixed")]
9229 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGet")]
9230 public static extern global::System.IntPtr
CFxProfileManager_ProfileGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9232 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileCopy")]
9233 public static extern int CFxProfileManager_ProfileCopy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9235 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileRename")]
9236 public static extern int CFxProfileManager_ProfileRename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9238 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileSave")]
9239 public static extern int CFxProfileManager_ProfileSave(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9241 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_addReactor")]
9242 public static extern void CFxProfileManager_addReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9244 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileManager_removeReactor")]
9245 public static extern void CFxProfileManager_removeReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9247 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxProfileManager")]
9250 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxProfileStorage")]
9253 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileStorage_DeleteNode")]
9254 public static extern int CFxProfileStorage_DeleteNode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9256 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileStorage_GetStorageFile")]
9259 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxProfileStorage_Save")]
9262 [DllImport(
"FxManaged.dll", EntryPoint=
9263"CSharp_new_CFxDatabaseReactor"
9268 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_cast")]
9271 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_desc")]
9274 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_isA")]
9277 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_isASwigExplicitCFxDatabaseReactor")]
9280 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_queryX")]
9283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_queryXSwigExplicitCFxDatabaseReactor")]
9286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_createObject")]
9289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDatabaseReactor")]
9292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_getRealClassName")]
9295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_director_connect")]
9296 public static extern void CFxDatabaseReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_0 delegate0,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_1 delegate1,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_2 delegate2,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_3 delegate3,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_4 delegate4,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_5 delegate5,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_6 delegate6,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_7 delegate7,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_8 delegate8,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_9 delegate9,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_10 delegate10,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_11 delegate11,
CFxDatabaseReactor.
SwigDelegateCFxDatabaseReactor_12 delegate12);
9298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_cast")]
9301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_desc")]
9304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_isA")]
9305 public static extern IntPtr
CFxCurvePE_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
9307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_queryX")]
9308 public static extern IntPtr
CFxCurvePE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
9310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_createObject")]
9313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_0")]
9314 public static extern int CFxCurvePE_getExtensionPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5, IntPtr jarg6);
9316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_1")]
9317 public static extern int CFxCurvePE_getExtensionPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
9319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_2")]
9320 public static extern int CFxCurvePE_getExtensionPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_0")]
9323 public static extern int CFxCurvePE_getFilletPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5, IntPtr jarg6);
9325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_1")]
9326 public static extern int CFxCurvePE_getFilletPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
9328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_2")]
9329 public static extern int CFxCurvePE_getFilletPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getGeneralCurve__SWIG_0")]
9334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getGeneralCurve__SWIG_1")]
9337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_getArea")]
9338 public static extern int CFxCurvePE_getArea(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, out
double jarg3);
9340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE__getExtensionPoints__SWIG_0")]
9343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE__getExtensionPoints__SWIG_1")]
9346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE__getFilletPoints__SWIG_0")]
9349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE__getFilletPoints__SWIG_1")]
9352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE__getGeneralCurve")]
9355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxCurvePE")]
9356 public static extern void delete_CFxCurvePE(global::System.Runtime.InteropServices.HandleRef jarg1);
9358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_cast")]
9361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_desc")]
9364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_isA")]
9367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_queryX")]
9370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_createObject")]
9373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_getOsnapPoints")]
9374 public static extern int CFxGripPointsPE_getOsnapPoints(HandleRef jarg1,
int jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7,
bool jarg8);
9376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_getObjectCount")]
9379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxGripPointsPE")]
9383 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxUITempOverrideKey_GetKeySequence")]
9386 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxUITempOverrideKey_SetKeySequence")]
9390 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxUIAccelerator_GetKeySequence")]
9393 [DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_CFxUIAccelerator_SetKeySequence")]
9397 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUI")]
9398 public static extern void delete_CFxUI(global::System.Runtime.InteropServices.HandleRef jarg1);
9400 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_LoadInterface")]
9403 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_SaveInterface")]
9406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_LoadResourceFile__SWIG_0")]
9407 public static extern bool CFxUI_LoadResourceFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9409 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_LoadResourceFile__SWIG_1")]
9410 public static extern bool CFxUI_LoadResourceFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9412 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_FindItem")]
9413 public static extern global::System.IntPtr
CFxUI_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9415 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateItemDefinition")]
9416 public static extern global::System.IntPtr
CFxUI_CreateItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9418 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyItemDefinition")]
9419 public static extern void CFxUI_DestroyItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9421 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveItemDefinition")]
9422 public static extern bool CFxUI_RemoveItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9424 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddGroup")]
9425 public static extern bool CFxUI_AddGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9427 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveGroup")]
9428 public static extern bool CFxUI_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9430 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetStartUpGroup")]
9431 public static extern global::System.IntPtr
CFxUI_GetStartUpGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
9433 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetStartUpWorkspace")]
9436 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetGroup")]
9437 public static extern global::System.IntPtr
CFxUI_GetGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9439 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateGroupIterator")]
9442 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddWorkspace")]
9443 public static extern bool CFxUI_AddWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9445 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveWorkspace")]
9446 public static extern bool CFxUI_RemoveWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9448 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetWorkspace")]
9449 public static extern global::System.IntPtr
CFxUI_GetWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9451 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateWorkspaceIterator")]
9454 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetCurrentWorkspace")]
9457 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_SetCurrentWorkspace")]
9458 public static extern void CFxUI_SetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9460 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateUniqueID")]
9461 public static extern global::System.IntPtr
CFxUI_CreateUniqueID(global::System.Runtime.InteropServices.HandleRef jarg1);
9463 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateGroup")]
9464 public static extern global::System.IntPtr
CFxUI_CreateGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9466 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeGroup")]
9467 public static extern global::System.IntPtr
CFxUI_CreateRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9469 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateWorkspace")]
9470 public static extern global::System.IntPtr
CFxUI_CreateWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9472 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateMenuItem__SWIG_0")]
9473 public static extern global::System.IntPtr
CFxUI_CreateMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9475 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateMenuItem__SWIG_1")]
9476 public static extern global::System.IntPtr
CFxUI_CreateMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9478 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyMenuItem")]
9479 public static extern void CFxUI_DestroyMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9481 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_0")]
9482 public static extern global::System.IntPtr
CFxUI_CreateToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9484 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_1")]
9487 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_2")]
9490 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyToolbarItem")]
9491 public static extern void CFxUI_DestroyToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9493 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonTabItem__SWIG_0")]
9494 public static extern global::System.IntPtr
CFxUI_CreateRibbonTabItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9496 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonTabItem__SWIG_1")]
9499 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonPanelItem__SWIG_0")]
9500 public static extern global::System.IntPtr
CFxUI_CreateRibbonPanelItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9502 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonPanelItem__SWIG_1")]
9505 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowItem__SWIG_0")]
9506 public static extern global::System.IntPtr
CFxUI_CreateRibbonRowItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9508 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowItem__SWIG_1")]
9511 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowElementItem__SWIG_0")]
9512 public static extern global::System.IntPtr
CFxUI_CreateRibbonRowElementItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9514 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowElementItem__SWIG_1")]
9517 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBar__SWIG_0")]
9520 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBar__SWIG_1")]
9523 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonSystemMenuItem__SWIG_0")]
9526 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonSystemMenuItem__SWIG_1")]
9529 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0")]
9532 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1")]
9535 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonHelpMenuItem__SWIG_0")]
9538 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonHelpMenuItem__SWIG_1")]
9541 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonTabItem")]
9542 public static extern void CFxUI_DestroyRibbonTabItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9544 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonPanelItem")]
9545 public static extern void CFxUI_DestroyRibbonPanelItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9547 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonRowItem")]
9548 public static extern void CFxUI_DestroyRibbonRowItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9550 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonRowElementItem")]
9553 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonQuickAccessBar")]
9556 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonSystemMenuItem")]
9559 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonHelpMenuItem")]
9560 public static extern void CFxUI_DestroyRibbonHelpMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9562 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonQuickAccessBarItem")]
9565 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateDoubleClickAction__SWIG_0")]
9566 public static extern global::System.IntPtr
CFxUI_CreateDoubleClickAction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9568 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateDoubleClickAction__SWIG_1")]
9571 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyDoubleClickAction")]
9572 public static extern void CFxUI_DestroyDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9574 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateAccelerator__SWIG_0")]
9575 public static extern global::System.IntPtr
CFxUI_CreateAccelerator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9577 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateAccelerator__SWIG_1")]
9578 public static extern global::System.IntPtr
CFxUI_CreateAccelerator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9580 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyAccelerator")]
9581 public static extern void CFxUI_DestroyAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9583 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateMouseButton__SWIG_0")]
9584 public static extern global::System.IntPtr
CFxUI_CreateMouseButton__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9586 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateMouseButton__SWIG_1")]
9587 public static extern global::System.IntPtr
CFxUI_CreateMouseButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
9589 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyMouseButton")]
9590 public static extern void CFxUI_DestroyMouseButton(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9592 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateTabletMenu")]
9595 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyTabletMenu")]
9596 public static extern void CFxUI_DestroyTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9598 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateTempOverrideKey__SWIG_0")]
9599 public static extern global::System.IntPtr
CFxUI_CreateTempOverrideKey__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9601 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateTempOverrideKey__SWIG_1")]
9604 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyTempOverrideKey")]
9605 public static extern void CFxUI_DestroyTempOverrideKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9607 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateImageItem__SWIG_0")]
9608 public static extern global::System.IntPtr
CFxUI_CreateImageItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9610 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateImageItem__SWIG_1")]
9611 public static extern global::System.IntPtr
CFxUI_CreateImageItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9613 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyImageItem")]
9614 public static extern void CFxUI_DestroyImageItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9616 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbar__SWIG_0")]
9617 public static extern global::System.IntPtr
CFxUI_CreateRuntimeToolbar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9619 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbar__SWIG_1")]
9620 public static extern global::System.IntPtr
CFxUI_CreateRuntimeToolbar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9622 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeToolbar")]
9623 public static extern void CFxUI_DestroyRuntimeToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9625 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddUserDefaultContextMenu")]
9626 public static extern void CFxUI_AddUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9628 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveUserDefaultContextMenu")]
9631 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddUserObjectContextMenu")]
9632 public static extern void CFxUI_AddUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9634 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveUserObjectContextMenu")]
9635 public static extern void CFxUI_RemoveUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9637 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddUserCommandContextMenu")]
9638 public static extern void CFxUI_AddUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9640 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveUserCommandContextMenu")]
9641 public static extern void CFxUI_RemoveUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9643 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DisplayContextMenu")]
9646 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_Menucmd")]
9647 public static extern int CFxUI_Menucmd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9649 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CheckEvents")]
9650 public static extern bool CFxUI_CheckEvents(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2,
bool jarg3,
bool jarg4,
bool jarg5);
9652 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_ResetEvents")]
9653 public static extern void CFxUI_ResetEvents(global::System.Runtime.InteropServices.HandleRef jarg1);
9655 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_Update__SWIG_0")]
9656 public static extern void CFxUI_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
bool jarg2);
9658 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_Update__SWIG_1")]
9661 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_UpdateMenu")]
9662 public static extern void CFxUI_UpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9664 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_UpdateRibbon")]
9667 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_UpdatePanelPreview")]
9668 public static extern global::System.IntPtr
CFxUI_UpdatePanelPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9670 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_SetCleanScreenState")]
9673 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_AddUIReactor")]
9674 public static extern void CFxUI_AddUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9676 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_RemoveUIReactor")]
9677 public static extern void CFxUI_RemoveUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9679 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeItemDefinition")]
9680 public static extern global::System.IntPtr
CFxUI_CreateRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9682 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeItemDefinition")]
9685 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeMenuItem__SWIG_0")]
9686 public static extern global::System.IntPtr
CFxUI_CreateRuntimeMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9688 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeMenuItem__SWIG_1")]
9689 public static extern global::System.IntPtr
CFxUI_CreateRuntimeMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9691 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeMenuItem")]
9692 public static extern void CFxUI_DestroyRuntimeMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9694 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbarItem__SWIG_0")]
9697 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbarItem__SWIG_1")]
9700 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeToolbarItem")]
9701 public static extern void CFxUI_DestroyRuntimeToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9703 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleMenuCollection")]
9706 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleToolbarCollection")]
9709 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonTabCollection")]
9712 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonSystemMenu")]
9715 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonQuickAccessBar")]
9718 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonHelpMenu")]
9721 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIDockableWindowCollection")]
9724 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_GetCount")]
9727 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_GetItem")]
9730 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_UpdateCurrentState")]
9733 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetName")]
9736 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetName")]
9737 public static extern void CFxUIWorkspace_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9739 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetLocalizedName")]
9742 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetLocalizedName")]
9743 public static extern void CFxUIWorkspace_SetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9745 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetFileName")]
9748 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetFileName")]
9749 public static extern void CFxUIWorkspace_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9751 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetDescription")]
9754 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetDescription")]
9755 public static extern void CFxUIWorkspace_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9757 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetMenus")]
9760 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetToolbars")]
9763 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetNavigationToolbars")]
9766 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetDockableWindows")]
9769 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetStatusBarVisible")]
9772 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetStatusBarVisible")]
9775 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetRibbonSystemMenu")]
9778 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetRibbonQuickAccessBar")]
9779 public static extern void CFxUIWorkspace_SetRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9781 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetName")]
9782 public static extern global::System.IntPtr
CFxUIGroup_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
9784 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetFileName")]
9787 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_IsBaseGroup")]
9790 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetUIItemDefinitions")]
9793 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetToolbars")]
9796 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetNavigationToolbars")]
9799 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMenus")]
9800 public static extern global::System.IntPtr
CFxUIGroup_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1);
9802 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetContextMenus")]
9805 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonTabSelectors")]
9808 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonQuickAccessBars")]
9811 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonSystemMenuItems")]
9814 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonHelpMenuItems")]
9817 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetDoubleClickActions")]
9820 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseButtons")]
9823 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseClicks")]
9826 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseShiftClicks")]
9829 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseCtrlClicks")]
9832 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseCtrlShiftClicks")]
9835 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetAccelerators")]
9838 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletMenus")]
9841 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletClicks")]
9844 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletShiftClicks")]
9847 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletCtrlClicks")]
9850 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletCtrlShiftClicks")]
9853 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetTempOverrideKeys")]
9856 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetMiddleButtonDoubleClickAction")]
9859 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_SetMiddleButtonDoubleClickAction")]
9862 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_GetImageItems")]
9865 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIGroup_IsRuntimeGroup")]
9868 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIItemDefinitionCollection")]
9871 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_Add")]
9874 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_CreateIterator")]
9877 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_FindItem")]
9880 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_Has")]
9883 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIMenuItemCollection")]
9886 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_InsertAfter")]
9887 public static extern bool CFxUIMenuItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9889 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Add")]
9890 public static extern bool CFxUIMenuItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9892 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Remove")]
9893 public static extern bool CFxUIMenuItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9895 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_GetCount")]
9898 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_GetItem")]
9901 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Clear")]
9904 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Has")]
9905 public static extern bool CFxUIMenuItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9907 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIToolbarItemCollection")]
9910 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_InsertAfter")]
9911 public static extern bool CFxUIToolbarItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9913 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Add")]
9914 public static extern bool CFxUIToolbarItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9916 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Remove")]
9919 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_GetCount")]
9922 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_GetItem")]
9925 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Clear")]
9928 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Has")]
9929 public static extern bool CFxUIToolbarItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9931 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIDoubleClickActionsCollection")]
9934 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_Add")]
9937 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_Remove")]
9940 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetCount")]
9943 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetItem__SWIG_0")]
9946 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetItem__SWIG_1")]
9949 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIButtonsCollection")]
9952 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_Add")]
9953 public static extern bool CFxUIButtonsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9955 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_Remove")]
9956 public static extern bool CFxUIButtonsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9958 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_GetCount")]
9961 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_GetItem")]
9964 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIAcceleratorsCollection")]
9967 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_Add")]
9968 public static extern bool CFxUIAcceleratorsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9970 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_Remove")]
9973 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_GetCount")]
9976 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_GetItem")]
9979 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUITabletMenusCollection")]
9982 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_Add")]
9983 public static extern bool CFxUITabletMenusCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9985 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_Remove")]
9988 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_GetCount")]
9991 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_GetItem")]
9994 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUITempOverrideKeysCollection")]
9997 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_Add")]
10000 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_Remove")]
10003 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_GetCount")]
10006 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIImageItemCollection")]
10009 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Add")]
10010 public static extern bool CFxUIImageItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10012 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Remove")]
10015 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_GetCount")]
10018 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_GetItem")]
10021 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Clear")]
10024 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Has")]
10025 public static extern bool CFxUIImageItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10027 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetID")]
10028 public static extern void CFxUIItemDefinition_SetID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10030 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetID")]
10033 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetContext")]
10036 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetName")]
10039 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetName")]
10040 public static extern void CFxUIItemDefinition_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10042 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetCommand")]
10045 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetCommand")]
10046 public static extern void CFxUIItemDefinition_SetCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10048 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetIcon")]
10051 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDarkIcon")]
10054 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetLightIcon")]
10057 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDarkIconInfo")]
10060 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetDarkIconInfo")]
10061 public static extern void CFxUIItemDefinition_SetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10063 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetLightIconInfo")]
10066 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetLightIconInfo")]
10067 public static extern void CFxUIItemDefinition_SetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10069 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDescription")]
10072 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetDescription")]
10075 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_IsObsolete")]
10078 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetObsolete")]
10081 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIItemDefinition_IsRuntime")]
10084 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetUID")]
10085 public static extern global::System.IntPtr
CFxUIMenuItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10087 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetUID")]
10088 public static extern void CFxUIMenuItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10090 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetName")]
10093 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetName")]
10094 public static extern void CFxUIMenuItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10096 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetAliases")]
10099 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_AddAlias")]
10100 public static extern void CFxUIMenuItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10102 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetDefinition")]
10103 public static extern void CFxUIMenuItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10105 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetDefinition")]
10108 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetParent")]
10111 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetChildren")]
10114 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsAction")]
10117 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsSeparator")]
10120 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetToSeparator")]
10123 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetType")]
10126 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetType")]
10129 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsObsolete")]
10132 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetObsolete")]
10135 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsRuntime")]
10138 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetUID")]
10141 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetUID")]
10142 public static extern void CFxUIToolbarItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10144 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetName")]
10147 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetName")]
10148 public static extern void CFxUIToolbarItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10150 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetAliases")]
10153 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_AddAlias")]
10154 public static extern void CFxUIToolbarItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10156 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefinition")]
10157 public static extern void CFxUIToolbarItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10159 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefinition")]
10162 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetParent")]
10165 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetChildren")]
10168 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetType")]
10171 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsAction")]
10174 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsSeparator")]
10177 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetToSeparator")]
10180 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetOnByDefault")]
10183 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetOnByDefault")]
10186 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetOrientation")]
10189 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetOrientation")]
10192 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetMovable")]
10195 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetMovable")]
10198 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefXLocation")]
10201 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefXLocation")]
10204 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefYLocation")]
10207 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefYLocation")]
10210 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsInMatrixToolbar")]
10213 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetInMatrixToolbar")]
10216 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetMatrixToolbarIndex")]
10219 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetMatrixToolbarIndex")]
10222 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsExpanded")]
10225 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetExpanded")]
10228 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetRows")]
10231 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetRows")]
10234 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsObsolete")]
10237 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetObsolete")]
10240 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetFlyoutID")]
10243 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetFlyoutID")]
10244 public static extern void CFxUIToolbarItem_SetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10246 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDockRow")]
10249 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDockRow")]
10252 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDockColumn")]
10255 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDockColumn")]
10258 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsRuntime")]
10261 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetUID")]
10264 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetUID")]
10265 public static extern void CFxUIDoubleClickAction_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10267 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetName")]
10270 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetName")]
10271 public static extern void CFxUIDoubleClickAction_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10273 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetDxfClassName")]
10276 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetDefinition")]
10279 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetDefinition")]
10282 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_IsObsolete")]
10285 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetObsolete")]
10288 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_IsRuntime")]
10291 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetUID")]
10294 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetUID")]
10295 public static extern void CFxUIAccelerator_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10297 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetName")]
10300 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetName")]
10301 public static extern void CFxUIAccelerator_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10303 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetDefinition")]
10304 public static extern void CFxUIAccelerator_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10306 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetDefinition")]
10309 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_IsObsolete")]
10312 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetObsolete")]
10315 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIAccelerator_IsRuntime")]
10318 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_GetUID")]
10319 public static extern global::System.IntPtr
CFxUIButton_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10321 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_SetUID")]
10322 public static extern void CFxUIButton_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10324 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_GetName")]
10325 public static extern global::System.IntPtr
CFxUIButton_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10327 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_SetName")]
10328 public static extern void CFxUIButton_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10330 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_SetDefinition")]
10331 public static extern void CFxUIButton_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10333 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_GetDefinition")]
10336 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_GetButtonNumber")]
10339 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_IsObsolete")]
10342 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_SetObsolete")]
10345 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIButton_IsRuntime")]
10348 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetRowsNumber")]
10351 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetRowsNumber")]
10354 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetColumnsNumber")]
10357 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetColumnsNumber")]
10360 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetItem")]
10361 public static extern global::System.IntPtr
CFxUITabletMenu_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3);
10363 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetItem")]
10364 public static extern bool CFxUITabletMenu_SetItem(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
10366 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetName")]
10369 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_IsObsolete")]
10372 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetObsolete")]
10375 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITabletMenu_IsRuntime")]
10378 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetUID")]
10381 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetUID")]
10382 public static extern void CFxUITempOverrideKey_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10384 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetName")]
10387 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetName")]
10388 public static extern void CFxUITempOverrideKey_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10390 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetDescription")]
10393 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetDescription")]
10396 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetKeyDownMacro")]
10399 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetKeyDownMacro")]
10402 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetKeyUpMacro")]
10405 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetKeyUpMacro")]
10408 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_IsObsolete")]
10411 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetObsolete")]
10414 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_IsRuntime")]
10417 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIDockableWindow")]
10420 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetShow")]
10423 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetShow")]
10426 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetAvailableOrientations")]
10429 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetOrientation")]
10432 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetOrientation")]
10435 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetAllowDocking")]
10438 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetAllowDocking")]
10441 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetName")]
10444 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetObjectName")]
10447 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIContext")]
10450 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIContext_OnCommand")]
10451 public static extern void CFxUIContext_OnCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10453 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIContext_GetMenuContext")]
10454 public static extern global::System.IntPtr
CFxUIContext_GetMenuContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10456 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIContext_OnUpdateMenu")]
10459 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetUID")]
10462 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetUID")]
10463 public static extern void CFxUIImageItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10465 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetName")]
10468 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetName")]
10469 public static extern void CFxUIImageItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10471 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetUITitleName")]
10474 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetUITitleName")]
10475 public static extern void CFxUIImageItem_SetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10477 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetImageLibFile")]
10480 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetImageLibFile")]
10481 public static extern void CFxUIImageItem_SetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10483 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetImageName")]
10486 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetImageName")]
10487 public static extern void CFxUIImageItem_SetImageName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10489 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetDefinition")]
10490 public static extern void CFxUIImageItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10492 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetDefinition")]
10495 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_IsObsolete")]
10498 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetObsolete")]
10501 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetParent")]
10504 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetChildren")]
10507 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_IsSeparator")]
10510 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetToSeparator")]
10513 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_IsRuntime")]
10516 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetColumns")]
10519 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetColumns")]
10522 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_GetRows")]
10525 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIImageItem_SetRows")]
10528 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxUIReactor")]
10531 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemCreated")]
10534 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemCreatedSwigExplicitCFxUIReactor")]
10537 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionCreated")]
10540 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionCreatedSwigExplicitCFxUIReactor")]
10543 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemCreated")]
10544 public static extern void CFxUIReactor_OnMenuItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10546 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemCreatedSwigExplicitCFxUIReactor")]
10549 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemAboutToDestroy")]
10552 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemAboutToDestroySwigExplicitCFxUIReactor")]
10555 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionAboutToDestroy")]
10558 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionAboutToDestroySwigExplicitCFxUIReactor")]
10561 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemAboutToDestroy")]
10564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemAboutToDestroySwigExplicitCFxUIReactor")]
10567 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarVisibilityChanged")]
10570 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarVisibilityChangedSwigExplicitCFxUIReactor")]
10573 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnSubMenuAboutToShow")]
10576 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnSubMenuAboutToShowSwigExplicitCFxUIReactor")]
10579 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceAboutToReload")]
10582 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceAboutToReloadSwigExplicitCFxUIReactor")]
10585 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceReloaded")]
10588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceReloadedSwigExplicitCFxUIReactor")]
10591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnRibbonControlCreated")]
10592 public static extern void CFxUIReactor_OnRibbonControlCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_OnRibbonControlCreatedSwigExplicitCFxUIReactor")]
10597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIReactor")]
10600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUIReactor_director_connect")]
10601 public static extern void CFxUIReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxUIReactor.
SwigDelegateCFxUIReactor_0 delegate0,
CFxUIReactor.
SwigDelegateCFxUIReactor_1 delegate1,
CFxUIReactor.
SwigDelegateCFxUIReactor_2 delegate2,
CFxUIReactor.
SwigDelegateCFxUIReactor_3 delegate3,
CFxUIReactor.
SwigDelegateCFxUIReactor_4 delegate4,
CFxUIReactor.
SwigDelegateCFxUIReactor_5 delegate5,
CFxUIReactor.
SwigDelegateCFxUIReactor_6 delegate6,
CFxUIReactor.
SwigDelegateCFxUIReactor_7 delegate7,
CFxUIReactor.
SwigDelegateCFxUIReactor_8 delegate8,
CFxUIReactor.
SwigDelegateCFxUIReactor_9 delegate9,
CFxUIReactor.
SwigDelegateCFxUIReactor_10 delegate10);
10603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxUIStyle")]
10606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxUIStyle")]
10609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesSystem")]
10612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetDisplayOLEScale")]
10615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetDisplayOLEScale")]
10618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetStoreSQLIndex")]
10621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetStoreSQLIndex")]
10624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetTablesReadOnly")]
10627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetTablesReadOnly")]
10630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetEnableStartupDialog")]
10633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetEnableStartupDialog")]
10636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetBeepOnError")]
10639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetBeepOnError")]
10642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetShowWarningMessages")]
10645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetShowWarningMessages")]
10648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetHelpFileName")]
10651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetHelpFileName")]
10654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetWebHelpEnable")]
10657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetWebHelpEnable")]
10660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetUsePerformanceMonitor")]
10663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetUsePerformanceMonitor")]
10666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetCheckBackBufferIssues")]
10669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetCheckBackBufferIssues")]
10672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetCheckForXPressUpdates")]
10675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetCheckForXPressUpdates")]
10678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAdditionalSupportPaths")]
10681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAdditionalSupportPaths")]
10684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetUseDefaultFileLocationSetting")]
10687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLoadMFCUI")]
10690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLoadMFCUI")]
10693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetTopLevelMode")]
10696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetTopLevelMode")]
10699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_Get3DMousePlugged")]
10702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_Set3DMousePlugged")]
10705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetPrintDialogQuickPreview")]
10708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetPrintDialogQuickPreview")]
10711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListFileName")]
10714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListFileName")]
10717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLispDebugPort")]
10720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLispDebugPort")]
10723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLispDebuggerEnabled")]
10726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLispDebuggerEnabled")]
10729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListIsMetric")]
10732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListIsMetric")]
10735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListRstDlgUseSystem")]
10738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListRstDlgUseSystem")]
10741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetOutputMaxLineCount")]
10744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetOutputMaxLineCount")]
10747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetMaxArray")]
10750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetMaxArray")]
10753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetXNotifyTime")]
10756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetXNotifyTime")]
10759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAppCastEnabled")]
10762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAppCastEnabled")]
10765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAppCastShowDialog")]
10768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAppCastShowDialog")]
10771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetWelcomeShowDialog")]
10774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetWelcomeShowDialog")]
10777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetReportMissingXRefsEnabled")]
10780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetReportMissingXRefsEnabled")]
10783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesUser")]
10786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetKeyboardAccelerator")]
10789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetKeyboardAccelerator")]
10792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetHyperlinkDisplayCursor")]
10795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetHyperlinkDisplayCursor")]
10798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetHyperlinkDisplayTooltip")]
10801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetHyperlinkDisplayTooltip")]
10804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetSCMTimeValue")]
10807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetSCMTimeValue")]
10810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetToggleLanguages")]
10813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetToggleLanguages")]
10816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetUseFullPath")]
10819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetUseFullPath")]
10822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetKeepPaperUnits")]
10825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetKeepPaperUnits")]
10828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetApplyFilterToLayersToolbar")]
10831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetApplyFilterToLayersToolbar")]
10834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetDrawingProperties")]
10837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetDrawingProperties")]
10840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetAutoSaveOnSwitchingWorksapces")]
10843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetAutoSaveOnSwitchingWorksapces")]
10846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesSelection")]
10849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSelection_GetPickGroup")]
10852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesSelection_SetPickGroup")]
10855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesOutput")]
10858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetDefaultOutputDevice")]
10861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetDefaultOutputDevice")]
10864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPrinterSpoolAlert")]
10867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPrinterSpoolAlert")]
10870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPrinterPaperSizeAlert")]
10873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPrinterPaperSizeAlert")]
10876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotLegacy")]
10879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotLegacy")]
10882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetUseLastPlotSettings")]
10885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetUseLastPlotSettings")]
10888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetDefaultPlotStyleTable")]
10891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetDefaultPlotStyleTable")]
10894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetAutoSavePlotLog")]
10897 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetAutoSavePlotLog")]
10900 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetSaveContinuousPlotLog")]
10903 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetSaveContinuousPlotLog")]
10906 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetRecentPrinterName")]
10909 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetRecentPrinterName")]
10912 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetSaveChangesToLayout")]
10915 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetSaveChangesToLayout")]
10918 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetBatchPrintOutputPath")]
10921 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetBatchPrintOutputPath")]
10924 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotStamp")]
10927 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotStamp")]
10930 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayDrawingName")]
10933 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayDrawingName")]
10936 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayLayoutName")]
10939 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayLayoutName")]
10942 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayDate")]
10945 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayDate")]
10948 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayLoginName")]
10951 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayLoginName")]
10954 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotDeviceName")]
10957 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotDeviceName")]
10960 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPaperSize")]
10963 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPaperSize")]
10966 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotScale")]
10969 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotScale")]
10972 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUserFields")]
10975 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUserFields")]
10978 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampWriteToLogFile")]
10981 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampWriteToLogFile")]
10984 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampLogFilePath")]
10987 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampLogFilePath")]
10990 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampLocation")]
10993 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampLocation")]
10996 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOrientation")]
10999 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOrientation")]
11002 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUpsideDown")]
11005 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUpsideDown")]
11008 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampRelativity")]
11011 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampRelativity")]
11014 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOffsetX")]
11017 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOffsetX")]
11020 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOffsetY")]
11023 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOffsetY")]
11026 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelOffsetX")]
11029 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelOffsetX")]
11032 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelOffsetY")]
11035 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelOffsetY")]
11038 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFontName")]
11041 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFontName")]
11044 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFontSize")]
11047 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFontSize")]
11050 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelFontSize")]
11053 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelFontSize")]
11056 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOnSingleLine")]
11059 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOnSingleLine")]
11062 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUnits")]
11065 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUnits")]
11068 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFile")]
11071 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFile")]
11074 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesPlotSettings")]
11077 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotCfgName")]
11080 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotCfgName")]
11083 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCanonicalMediaName")]
11086 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCanonicalMediaName")]
11089 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUseStandardScale")]
11092 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUseStandardScale")]
11095 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetStdScaleType")]
11098 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetStdScaleType")]
11101 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCustomPrintScaleNumerator")]
11104 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCustomPrintScaleNumerator")]
11107 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCustomPrintScaleDenominator")]
11110 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCustomPrintScaleDenominator")]
11113 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotType")]
11116 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotType")]
11119 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotViewHandle")]
11122 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotViewHandle")]
11125 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaXMin")]
11128 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaXMax")]
11131 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaYMin")]
11134 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaYMax")]
11137 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaXMin")]
11140 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaXMax")]
11143 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaYMin")]
11146 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaYMax")]
11149 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaZMin")]
11152 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaZMax")]
11155 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaZMin")]
11158 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaZMax")]
11161 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotCentered")]
11164 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotCentered")]
11167 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotRotation")]
11170 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotRotation")]
11173 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintLineweights")]
11176 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintLineweights")]
11179 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlot")]
11182 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlot")]
11185 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlotResLevel")]
11188 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlotResLevel")]
11191 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlotCustomDPI")]
11194 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlotCustomDPI")]
11197 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintToFile")]
11200 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintToFile")]
11203 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintStamp")]
11206 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintStamp")]
11209 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotPaperUnits")]
11212 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotPaperUnits")]
11215 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintOffsetX")]
11218 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintOffsetX")]
11221 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintOffsetY")]
11224 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintOffsetY")]
11227 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCurrentStyleSheet")]
11230 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCurrentStyleSheet")]
11233 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotPlotStyles")]
11236 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotPlotStyles")]
11239 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUsePlotTransparency")]
11242 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUsePlotTransparency")]
11245 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPaperImageOrigin")]
11248 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPaperImageOrigin")]
11251 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetScaleLineWeight")]
11254 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetScaleLineWeight")]
11257 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUseLayersPDF")]
11260 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUseLayersPDF")]
11263 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetReplacePDFwithPC3")]
11266 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetReplacePDFwithPC3")]
11269 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetOpenPDF")]
11272 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetOpenPDF")]
11275 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesOpenSave")]
11278 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetFullCRCValidation")]
11281 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetFullCRCValidation")]
11284 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetTempFileExtension")]
11287 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetTempFileExtension")]
11290 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetProxyImage")]
11293 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetProxyImage")]
11296 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetAutoAudit")]
11299 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetAutoAudit")]
11302 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetSaveAsType")]
11305 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetSaveAsType")]
11308 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetTryRecovery")]
11311 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetTryRecovery")]
11314 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetUseOriginalFormat")]
11317 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetUseOriginalFormat")]
11320 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetPreserveOriginalFormat")]
11323 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetPreserveOriginalFormat")]
11326 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetForceOpenWithCodepage")]
11329 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetForceOpenWithCodepage")]
11332 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetForceOpenWithCtbPrintMode")]
11335 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetForceOpenWithCtbPrintMode")]
11338 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetAutomaticPurgeUnspecifiedData")]
11341 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetAutomaticPurgeUnspecifiedData")]
11344 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetFullFilePathInTitleBar")]
11347 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetFullFilePathInTitleBar")]
11350 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDrafting")]
11353 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetDynaSnapMarkerColor")]
11356 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetDynaSnapMarkerColor")]
11359 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetSheetDynaSnapMarkerColor")]
11362 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetSheetDynaSnapMarkerColor")]
11365 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetDynaSnapMarkerSize")]
11368 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetDynaSnapMarkerSize")]
11371 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetAlignmentPointAcquisition")]
11374 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetAlignmentPointAcquisition")]
11377 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetModelAnnoautoscaleValue")]
11380 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetModelAnnoautoscaleValue")]
11383 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetSheetAnnoautoscaleValue")]
11386 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetSheetAnnoautoscaleValue")]
11389 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDisplay")]
11392 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayMargins")]
11395 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayMargins")]
11398 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayPaper")]
11401 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayPaper")]
11404 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayPaperShadow")]
11407 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayPaperShadow")]
11410 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutShowPlotSetup")]
11413 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutShowPlotSetup")]
11416 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutCreateViewport")]
11419 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutCreateViewport")]
11422 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayScrollBars")]
11425 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayScrollBars")]
11428 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayScreenMenu")]
11431 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayScreenMenu")]
11434 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayLayoutTabs")]
11437 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayLayoutTabs")]
11440 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayPaletteHideDelay")]
11443 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayPaletteHideDelay")]
11446 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayPaletteShowDelay")]
11449 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayPaletteShowDelay")]
11452 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTrueColorImages")]
11455 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTrueColorImages")]
11458 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDockedVisibleLines")]
11461 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDockedVisibleLines")]
11464 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGraphicsWinModelBackgrndColor")]
11467 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGraphicsWinModelBackgrndColor")]
11470 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetModelCrosshairColor")]
11473 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetModelCrosshairColor")]
11476 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGraphicsWinLayoutBackgrndColor")]
11479 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGraphicsWinLayoutBackgrndColor")]
11482 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextWinBackgrndColor")]
11485 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextWinBackgrndColor")]
11488 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextWinTextColor")]
11491 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextWinTextColor")]
11494 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutCrosshairColor")]
11497 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutCrosshairColor")]
11500 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetAutoTrackingVecColor")]
11503 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetAutoTrackingVecColor")]
11506 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutAutoTrackingVecColor")]
11509 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutAutoTrackingVecColor")]
11512 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFont")]
11515 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFont")]
11518 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFontStyle")]
11521 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFontStyle")]
11524 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFontSize")]
11527 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFontSize")]
11530 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetHistoryLines")]
11533 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetHistoryLines")]
11536 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairTintMode")]
11539 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairTintMode")]
11542 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairXAxisColor")]
11545 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairXAxisColor")]
11548 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairYAxisColor")]
11551 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairYAxisColor")]
11554 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairZAxisColor")]
11557 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairZAxisColor")]
11560 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDynamicHighlightColor")]
11563 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDynamicHighlightColor")]
11566 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSelectedEntityColor")]
11569 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSelectedEntityColor")]
11572 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetUseLargeToolbarsButtons")]
11575 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetUseLargeToolbarsButtons")]
11578 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayOptionToolbar")]
11581 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayOptionToolbar")]
11584 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLineTypeShowDetails")]
11587 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLineTypeShowDetails")]
11590 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetPropertiesWindowDisplayMode")]
11593 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetPropertiesWindowDisplayMode")]
11596 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeToolbarsIconSize")]
11599 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeToolbarsIconSize")]
11602 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallToolbarsIconSize")]
11605 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallToolbarsIconSize")]
11608 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeRibbonBigButtonIconSize")]
11611 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeRibbonBigButtonIconSize")]
11614 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallRibbonBigButtonIconSize")]
11617 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallRibbonBigButtonIconSize")]
11620 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeRibbonSmallButtonIconSize")]
11623 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeRibbonSmallButtonIconSize")]
11626 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallRibbonSmallButtonIconSize")]
11629 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallRibbonSmallButtonIconSize")]
11632 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetColorComboBoxSortMode")]
11635 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetColorComboBoxSortMode")]
11638 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRefeditBackgrndColor")]
11641 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRefeditBackgrndColor")]
11644 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetBEditBackgrndColor")]
11647 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetBEditBackgrndColor")]
11650 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetOptionsToolbarMode")]
11653 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetOptionsToolbarMode")]
11656 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonCustomizeButtonVisible")]
11659 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonCustomizeButtonVisible")]
11662 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonDisplayMode")]
11665 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonDisplayMode")]
11668 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonMinimizedMode")]
11671 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonMinimizedMode")]
11674 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonWorkspaceVisible")]
11677 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonWorkspaceVisible")]
11680 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetStyleMode")]
11683 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetStyleMode")]
11686 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputBkgColor")]
11689 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputBkgColor")]
11692 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputBorderColor")]
11695 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputBorderColor")]
11698 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputTextColor")]
11701 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputTextColor")]
11704 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputDimLinesColor")]
11707 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputDimLinesColor")]
11710 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCLExtensionConstantWithViewport")]
11713 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCLExtensionConstantWithViewport")]
11716 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetEntitySelectionHighlightOpacity")]
11719 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetEntitySelectionHighlightOpacity")]
11722 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetEntitySelectionHighlightThickness")]
11725 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetEntitySelectionHighlightThickness")]
11728 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_Get3DSnapMarkerColor")]
11731 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_Set3DSnapMarkerColor")]
11734 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetUseDashedEntitySelection")]
11737 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetUseDashedEntitySelection")]
11740 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGripAlpha")]
11743 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGripAlpha")]
11746 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetAngBaseTrackerActivationValue")]
11749 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetAngBaseTrackerActivationValue")]
11752 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetPaletteIcons")]
11755 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetPaletteIcons")]
11758 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesEnterpoint")]
11761 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetRemainOnScreen")]
11764 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetRemainOnScreen")]
11767 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetAngDistTogether")]
11770 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetAngDistTogether")]
11773 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetPresetRelativePoint")]
11776 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetPresetRelativePoint")]
11779 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesMatrixToolbar")]
11782 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_GetExtendedView")]
11785 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_SetExtendedView")]
11788 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_GetPreferredColumnCount")]
11791 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_SetPreferredColumnCount")]
11794 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesHatch")]
11797 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesHatch_GetDefaultGradientColor")]
11800 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesHatch_SetDefaultGradientColor")]
11803 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesPackAndGo")]
11806 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetPackageType")]
11809 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetPackageType")]
11812 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetSaveFormat")]
11815 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetSaveFormat")]
11818 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestFolder")]
11821 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestFolder")]
11824 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestFile")]
11827 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestFile")]
11830 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestAction")]
11833 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestAction")]
11836 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetFilePathOption")]
11839 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetFilePathOption")]
11842 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetRootFolder")]
11845 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetRootFolder")]
11848 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetBindXRef")]
11851 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetBindXRef")]
11854 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetBindType")]
11857 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetBindType")]
11860 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetPurgeDatabase")]
11863 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetPurgeDatabase")]
11866 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludeFont")]
11869 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludeFont")]
11872 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludeUnloadedReferences")]
11875 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludeUnloadedReferences")]
11878 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludePrintConfigs")]
11881 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludePrintConfigs")]
11884 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetSearchPath")]
11887 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetSearchPath")]
11890 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesTablet")]
11893 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetWindowLeft")]
11896 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetWindowLeft")]
11899 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetWindowRight")]
11902 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetWindowRight")]
11905 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectOneLeft")]
11908 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectOneLeft")]
11911 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectOneRight")]
11914 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectOneRight")]
11917 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectTwoLeft")]
11920 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectTwoLeft")]
11923 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectTwoRight")]
11926 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectTwoRight")]
11929 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectThreeLeft")]
11932 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectThreeLeft")]
11935 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectThreeRight")]
11938 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectThreeRight")]
11941 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFourLeft")]
11944 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFourLeft")]
11947 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFourRight")]
11950 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFourRight")]
11953 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFifthLeft")]
11956 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFifthLeft")]
11959 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFifthRight")]
11962 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFifthRight")]
11965 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSixthLeft")]
11968 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSixthLeft")]
11971 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSixthRight")]
11974 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSixthRight")]
11977 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSeventhLeft")]
11980 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSeventhLeft")]
11983 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSeventhRight")]
11986 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSeventhRight")]
11989 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectEighthLeft")]
11992 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectEighthLeft")]
11995 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectEighthRight")]
11998 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectEighthRight")]
12001 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetTabletEnabled")]
12004 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetTabletEnabled")]
12007 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDimensionPalette")]
12010 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_GetLibraryPath")]
12013 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_SetLibraryPath")]
12016 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_GetDimensionPaletteEnabled")]
12019 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_SetDimensionPaletteEnabled")]
12022 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesLayerPallete")]
12025 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_GetIsolateLayerBehavior")]
12028 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_SetIsolateLayerBehavior")]
12031 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_GetIsoLayerBehaviorViewPort")]
12034 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_SetIsoLayerBehaviorViewPort")]
12037 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDimensionMove")]
12040 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionMove_GetDimensionMoveEnabled")]
12043 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDimensionMove_SetDimensionMoveEnabled")]
12046 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesEntityMove")]
12049 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEntityMove_GetEntityMoveEnabled")]
12052 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesEntityMove_SetEntityMoveEnabled")]
12055 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesHeadsUpDisplay")]
12058 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesHeadsUpDisplay_GetHeadsUpDisplayEnabled")]
12061 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesHeadsUpDisplay_SetHeadsUpDisplayEnabled")]
12064 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesAutoSplitDimensions")]
12067 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutoSplitDimensions_GetAutoSplitDimensionsEnabled")]
12070 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutoSplitDimensions_SetAutoSplitDimensionsEnabled")]
12073 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesOLEEditor")]
12076 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOLEEditor_GetInPlaceEditorEnabled")]
12079 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesOLEEditor_SetInPlaceEditorEnabled")]
12082 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDwgStandards")]
12085 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetIsAutomaticallyFixedOn")]
12088 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetIsAutomaticallyFixedOn")]
12091 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetIsShowIgnoredIssuesOn")]
12094 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetIsShowIgnoredIssuesOn")]
12097 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetPreferredDwsFile")]
12100 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetPreferredDwsFile")]
12103 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDesignResources")]
12106 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetContentViewType")]
12109 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetContentViewType")]
12112 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetLastAccessedLocation")]
12115 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetLastAccessedLocation")]
12118 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetHomeLocation")]
12121 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetHomeLocation")]
12124 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetFavorites")]
12127 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetFavorites")]
12130 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetTreeVisibilty")]
12133 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetTreeVisibilty")]
12136 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetPreviewVisibilty")]
12139 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetPreviewVisibilty")]
12142 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetPortDesignLibraryFolders")]
12145 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetPortDesignLibraryFolders")]
12148 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetProperties")]
12151 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetProperties")]
12154 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetLastBrowsePath")]
12157 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetLastBrowsePath")]
12160 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDynamicInputs")]
12163 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_GetTooltipsTransparency")]
12166 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_SetTooltipsTransparency")]
12169 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_GetTooltipsSize")]
12172 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_SetTooltipsSize")]
12175 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesDiscardDuplicatesSettings")]
12178 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetTolerance")]
12181 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetTolerance")]
12184 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetIgnoreObjectProperties")]
12187 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetIgnoreObjectProperties")]
12190 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetOptimizePolyline")]
12193 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetOptimizePolyline")]
12196 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetIgnorePolylineWidth")]
12199 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetIgnorePolylineWidth")]
12202 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetDonotBreakPolyline")]
12205 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetDonotBreakPolyline")]
12208 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetCombinePartialOverlap")]
12211 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetCombinePartialOverlap")]
12214 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetCombineEndtoEndAligned")]
12217 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetCombineEndtoEndAligned")]
12220 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetMaintainAssociativity")]
12223 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetMaintainAssociativity")]
12226 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesLayerStateManager")]
12229 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetHideUnusedLayers")]
12232 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetHideUnusedLayers")]
12235 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetViewPortOverrides")]
12238 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetViewPortOverrides")]
12241 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetHideDeletedLayersArea")]
12244 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetHideDeletedLayersArea")]
12247 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesAutocomplete")]
12250 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetAlias")]
12253 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetAlias")]
12256 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetListDisplay")]
12259 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetListDisplay")]
12262 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetMidstring")]
12265 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetMidstring")]
12268 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetSystemVariable")]
12271 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetSystemVariable")]
12274 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetCommandWithAlias")]
12277 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetCommandWithAlias")]
12280 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetAutoCorrect")]
12283 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetAutoCorrect")]
12286 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetMidStringCharCount")]
12289 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetMidStringCharCount")]
12292 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesAdvancedAttEdit")]
12295 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAdvancedAttEdit_GetHideProperties")]
12298 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesAdvancedAttEdit_SetHideProperties")]
12301 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesMLeaderSettings")]
12304 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderOptions")]
12307 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderOptions")]
12310 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderType")]
12313 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderType")]
12316 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderContentType")]
12319 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderContentType")]
12322 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderVertex")]
12325 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderVertex")]
12328 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderStartAngle")]
12331 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderStartAngle")]
12334 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderEndAngle")]
12337 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderEndAngle")]
12340 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderBlockName")]
12343 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderBlockName")]
12346 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderLandingLine")]
12349 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderLandingLine")]
12352 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderLandingLineLength")]
12355 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderLandingLineLength")]
12358 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesInputHistory")]
12361 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesInputHistory_GetEnabled")]
12364 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesInputHistory_SetEnabled")]
12367 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesCloudCommenting")]
12370 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesCloudCommenting_GetFilter")]
12373 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesCloudCommenting_SetFilter")]
12376 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesCloudStorage")]
12379 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesCloudStorage_GetXrefUploadPopup")]
12382 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesCloudStorage_SetXrefUploadPopup")]
12385 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferencesContextualHelp")]
12388 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesContextualHelp_GetContextualHelpEnabled")]
12391 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferencesContextualHelp_SetContextualHelpEnabled")]
12394 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreferences")]
12397 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Display")]
12400 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Drafting")]
12403 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_DimensionPalette")]
12406 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_DimensionMove")]
12409 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_EntityMove")]
12412 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_HeadsUpDisplay")]
12415 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_OLEEditor")]
12418 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_OpenSave")]
12421 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Output")]
12424 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_PlotSettings")]
12427 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Selection")]
12430 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Systems")]
12433 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_User")]
12434 public static extern global::System.IntPtr
CFxPreferences_User(global::System.Runtime.InteropServices.HandleRef jarg1);
12436 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Enterpoint")]
12439 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_MatrixToolbar")]
12442 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Hatch")]
12443 public static extern global::System.IntPtr
CFxPreferences_Hatch(global::System.Runtime.InteropServices.HandleRef jarg1);
12445 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_PackAndGo")]
12448 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_StandardCompliantDwg")]
12451 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_DesignResources")]
12454 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_Tablet")]
12457 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_DiscardDuplicatesSettings")]
12460 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_LayerStateSettings")]
12463 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_DynamicInputs")]
12466 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_AutocompleteSettings")]
12469 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_AdvancedAttEdit")]
12472 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_MLeaderSettings")]
12475 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_AutoSplitDimensions")]
12478 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_InputHistory")]
12481 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_LayerPallete")]
12484 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_CloudCommenting")]
12487 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_CloudStorage")]
12490 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreferences_ContextualHelp")]
12493 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_cast")]
12496 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_desc")]
12499 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_isA")]
12500 public static extern IntPtr
CFxModule_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
12502 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_isASwigExplicitCFxModule")]
12505 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_queryX")]
12506 public static extern IntPtr
CFxModule_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
12508 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_queryXSwigExplicitCFxModule")]
12511 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_createObject")]
12514 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_0")]
12517 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_1")]
12520 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_2")]
12523 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_pDatabase_set")]
12526 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_pDatabase_get")]
12529 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_DefunCode_set")]
12532 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_DefunCode_get")]
12535 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxModule_CFxEventData")]
12538 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_event___SWIG_0")]
12539 public static extern int CFxModule_event___SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12541 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_event___SWIG_1")]
12544 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxModule")]
12547 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxModule")]
12548 public static extern void delete_CFxModule(global::System.Runtime.InteropServices.HandleRef jarg1);
12550 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_director_connect")]
12553 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPluginModuleInternal")]
12556 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_initApp")]
12559 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_uninitApp")]
12562 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_addGUID")]
12565 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_addGUIDs")]
12568 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_nextGUID__SWIG_0")]
12571 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_nextGUID__SWIG_1")]
12574 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_setEdition")]
12577 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_valid")]
12580 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetCFxPluginModuleInternal")]
12583 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_desktop_set")]
12586 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_desktop_get")]
12589 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_userFolder_set")]
12592 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_userFolder_get")]
12595 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_manufacturer_set")]
12598 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_manufacturer_get")]
12601 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_hostID_set")]
12604 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_hostID_get")]
12607 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_appName_set")]
12610 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_appName_get")]
12613 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_templates_set")]
12616 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_VSTA_CONTEXT_templates_get")]
12619 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_VSTA_CONTEXT")]
12622 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_VSTA_CONTEXT")]
12625 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxVSTA")]
12626 public static extern void delete_CFxVSTA(global::System.Runtime.InteropServices.HandleRef jarg1);
12628 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_IsVSTAStarted")]
12631 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_SetContext")]
12632 public static extern void CFxVSTA_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
int jarg5);
12634 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_Load")]
12635 public static extern bool CFxVSTA_Load(global::System.Runtime.InteropServices.HandleRef jarg1);
12637 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_GetMacros")]
12638 public static extern global::System.IntPtr
CFxVSTA_GetMacros(global::System.Runtime.InteropServices.HandleRef jarg1);
12640 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_GenerateNewMacroName")]
12643 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_ExecuteMacro")]
12644 public static extern void CFxVSTA_ExecuteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12646 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_EditMacro")]
12647 public static extern void CFxVSTA_EditMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12649 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_DeleteMacro")]
12650 public static extern void CFxVSTA_DeleteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12652 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_StartMacroRecording")]
12653 public static extern void CFxVSTA_StartMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12655 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_StopMacroRecording")]
12658 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_EmitCommands")]
12659 public static extern void CFxVSTA_EmitCommands(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12661 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_GetCurrentMacro")]
12664 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_SetCurrentMacro")]
12667 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVSTA_GetLanguage")]
12670 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSystemFiles")]
12673 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSupportPath")]
12676 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetSupportPath")]
12677 public static extern void CFxSystemFiles_SetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12679 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDrawingsPath")]
12682 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDrawingsPath")]
12683 public static extern void CFxSystemFiles_SetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12685 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMenusPath")]
12688 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMenusPath")]
12689 public static extern void CFxSystemFiles_SetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12691 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetFontsPath")]
12694 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetFontsPath")]
12695 public static extern void CFxSystemFiles_SetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12697 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTempPath")]
12700 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTempPath")]
12701 public static extern void CFxSystemFiles_SetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12703 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetHelpFile")]
12706 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetHelpFile")]
12707 public static extern void CFxSystemFiles_SetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12709 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotFile")]
12712 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotFile")]
12713 public static extern void CFxSystemFiles_SetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12715 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotStyleTablesPath")]
12718 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotStyleTablesPath")]
12721 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetWBLOCKPath")]
12724 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetWBLOCKPath")]
12725 public static extern void CFxSystemFiles_SetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12727 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMultilineStylePath")]
12730 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMultilineStylePath")]
12733 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLinetypesPath")]
12736 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetLinetypesPath")]
12739 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAutosavePath")]
12742 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAutosavePath")]
12743 public static extern void CFxSystemFiles_SetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12745 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAliasPath")]
12748 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAliasPath")]
12749 public static extern void CFxSystemFiles_SetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12751 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetProjectFilePath")]
12752 public static extern global::System.IntPtr
CFxSystemFiles_GetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12754 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetProjectFilePath")]
12755 public static extern void CFxSystemFiles_SetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12757 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetWorkspacePath")]
12760 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetWorkspacePath")]
12763 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDriversPath")]
12766 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDriversPath")]
12767 public static extern void CFxSystemFiles_SetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12769 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMenuFile")]
12772 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMenuFile")]
12773 public static extern void CFxSystemFiles_SetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12775 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetEnterpriseMenuFile")]
12778 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetEnterpriseMenuFile")]
12781 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetCustomIconPath")]
12784 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetCustomIconPath")]
12787 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDefaultInternetURL")]
12790 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDefaultInternetURL")]
12793 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetConfigFile")]
12796 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTextEditor")]
12799 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTextEditor")]
12800 public static extern void CFxSystemFiles_SetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12802 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMainDictionary")]
12805 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMainDictionary")]
12808 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetCustomDictionary")]
12811 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetCustomDictionary")]
12814 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAltFontFile")]
12817 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAltFontFile")]
12818 public static extern void CFxSystemFiles_SetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12820 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetFontFileMap")]
12823 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetFontFileMap")]
12824 public static extern void CFxSystemFiles_SetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12826 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintFile")]
12829 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintFile")]
12830 public static extern void CFxSystemFiles_SetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12832 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSpoolExecutable")]
12835 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSpoolExecutable")]
12838 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPostScriptPrologFile")]
12841 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPostScriptPrologFile")]
12844 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSpoolerPath")]
12847 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSpoolerPath")]
12850 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterConfigPath")]
12853 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterConfigPath")]
12856 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterDescPath")]
12859 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterDescPath")]
12862 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterStyleSheetPath")]
12865 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterStyleSheetPath")]
12868 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetColorBookPath")]
12871 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetColorBookPath")]
12874 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSmartNewTemplateFile")]
12877 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetSmartNewTemplateFile")]
12880 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPageSetupOverridesTemplateFile")]
12883 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPageSetupOverridesTemplateFile")]
12886 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetToolPalettePath")]
12889 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetToolPalettePath")]
12892 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLogFilePath")]
12895 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetLogFilePath")]
12896 public static extern void CFxSystemFiles_SetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12898 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotLogFilePath")]
12901 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotLogFilePath")]
12904 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTemplateDWGPath")]
12907 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTemplateDWGPath")]
12910 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTempXRefPath")]
12913 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTempXRefPath")]
12914 public static extern void CFxSystemFiles_SetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12916 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTextureMapPath")]
12919 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTextureMapPath")]
12922 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAltTabletMenuFile")]
12925 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAltTabletMenuFile")]
12928 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLicenseServer")]
12931 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetVSTATemplatesPath")]
12934 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetVSTATemplatesPath")]
12937 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetVSTAHostId")]
12940 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetVSTAHostId")]
12941 public static extern void CFxSystemFiles_SetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12943 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetXRefPath")]
12946 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetXRefPath")]
12947 public static extern void CFxSystemFiles_SetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12949 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSettingsPath")]
12952 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSettingsPath")]
12955 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetApplicationPath")]
12958 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetUserDataPath")]
12961 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDrawingBorderPaths")]
12964 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDrawingBorderPaths")]
12967 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTitleBlockPaths")]
12970 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTitleBlockPaths")]
12973 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSessionFolder")]
12976 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxRecentFiles")]
12979 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentFiles_Clear")]
12982 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentFiles_Add")]
12983 public static extern void CFxRecentFiles_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12985 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentFiles_Remove")]
12986 public static extern void CFxRecentFiles_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12988 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentFiles_GetFileNames")]
12991 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxAppInfo")]
12994 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_cast")]
12997 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_desc")]
13000 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_isA")]
13001 public static extern IntPtr
CFxAppInfo_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
13003 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_queryX")]
13004 public static extern IntPtr
CFxAppInfo_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13006 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_createObject")]
13009 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetType")]
13012 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetType")]
13013 public static extern void CFxAppInfo_SetType(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
13015 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetLoadReasons")]
13018 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetLoadReasons")]
13021 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetFileName")]
13024 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetFileName")]
13025 public static extern void CFxAppInfo_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13027 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetAppName")]
13030 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetAppName")]
13031 public static extern void CFxAppInfo_SetAppName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13033 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetAppDesc")]
13036 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetAppDesc")]
13037 public static extern void CFxAppInfo_SetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13039 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetManaged")]
13042 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_IsManaged")]
13045 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_Load")]
13046 public static extern bool CFxAppInfo_Load(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13048 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_Save")]
13049 public static extern bool CFxAppInfo_Save(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13051 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetGlobalCommandNames")]
13054 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetGlobalCommandNames")]
13057 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetLocalCommandNames")]
13060 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetLocalCommandNames")]
13063 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SetGroupNames")]
13064 public static extern void CFxAppInfo_SetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13066 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetGroupNames")]
13067 public static extern void CFxAppInfo_GetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13069 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_GetStatus")]
13072 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPicture")]
13075 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPicture_Clear")]
13076 public static extern void CFxPicture_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
13078 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxViewDrawContext")]
13081 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_AdjustBeforeUpdate")]
13082 public static extern void CFxViewDrawContext_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13084 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_BeginUpdate")]
13085 public static extern void CFxViewDrawContext_BeginUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13087 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_DrawObject")]
13090 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_EndUpdate")]
13093 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_GetViewDrawInfo__SWIG_0")]
13096 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_ClearBackground")]
13099 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_SetClipPath")]
13102 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawContext_GetGiGeometry")]
13105 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_kMAX_VALID_DEPTH_RANGE_get")]
13108 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxViewDrawInfo")]
13111 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxViewDrawInfo")]
13114 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeView__SWIG_0")]
13115 public static extern void CFxViewDrawInfo_InitializeView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
double jarg5,
double jarg6,
int jarg7);
13117 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeView__SWIG_1")]
13118 public static extern void CFxViewDrawInfo_InitializeView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
double jarg5,
double jarg6);
13120 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeViewByExtents")]
13123 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeOutputSize")]
13126 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializePalette")]
13129 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeDatabase")]
13132 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeFromFxView")]
13135 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeFromDbViewport")]
13138 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFILLMODE")]
13141 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetQTEXTMODE")]
13144 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetXCLIPFRAME")]
13147 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDrawImages")]
13150 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawImages")]
13153 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetTEXTFILL")]
13156 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxCadWindowId")]
13159 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewportId")]
13162 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetIMAGEFRAME")]
13165 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetIMAGEFRAME")]
13168 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsPlotGeneration")]
13171 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseGsModel")]
13174 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseGsModel")]
13177 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseTransparency")]
13180 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseTransparency")]
13183 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsInitialUpdate")]
13186 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsDrawSkipped")]
13189 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawSkipped")]
13192 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsInsideSelect")]
13195 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInsideSelect")]
13198 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVIEWRES")]
13201 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsPerspective")]
13204 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPixelWidth")]
13207 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPixelHeight")]
13210 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisiblePixelWidth")]
13213 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisiblePixelHeight")]
13216 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrontClip")]
13219 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetBackClip")]
13222 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFrontClip")]
13225 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetBackClip")]
13228 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsFrontClipped")]
13231 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsBackClipped")]
13234 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFocalLength")]
13237 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewDir")]
13240 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPosition")]
13243 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetUpVector")]
13246 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetTarget")]
13249 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFieldWidth")]
13252 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFieldHeight")]
13255 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsRapidMode")]
13258 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetInitialActiveAreaInViewCoordinates")]
13261 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaInViewCoordinates")]
13264 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByViewport")]
13267 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByWCSContour")]
13270 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByEYEContour")]
13273 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetBackground")]
13276 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetForeground")]
13279 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPalette")]
13282 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetColor")]
13285 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetRenderMode")]
13288 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetRenderMode")]
13291 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsDragging")]
13294 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetIsDragging")]
13297 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsFadeMode")]
13300 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFadeMode")]
13303 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDrawDecoration")]
13306 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawDecoration")]
13309 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsExtentsCalculationActive")]
13312 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetExtentsCalculationActive")]
13315 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDebugMode")]
13318 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxDatabase")]
13321 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerStubs")]
13324 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerListNames")]
13327 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerList")]
13330 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFrozenLayerList")]
13333 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseLinetyper")]
13336 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseLinetyper")]
13339 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseLineWeights")]
13342 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseLineWeights")]
13345 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLineweightToDcScaleOverride")]
13348 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_0")]
13351 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_1")]
13354 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsOrbitMode")]
13357 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetOrbitMode")]
13360 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxView")]
13363 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPDFFRAME")]
13366 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLensLength")]
13369 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLensLength")]
13372 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetEyeToOutput")]
13375 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetEyeToOutput")]
13376 public static extern void CFxViewDrawInfo_SetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13378 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetScreenRect")]
13381 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisibleScreenRect")]
13384 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisibleScreenRectInViewCoordinates")]
13387 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVpNum")]
13390 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetCadWindowId")]
13393 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetWorldToEyeMatrix")]
13396 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetAdjustedProjectionMatrix")]
13399 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetAdjustedViewportMatrix")]
13402 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewportMatrix")]
13405 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetScalePixelSize")]
13408 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_HardwareTransformationsAllowed")]
13411 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_AllowHardwareTransformations")]
13414 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLayoutId")]
13417 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsScalingLineweights")]
13420 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetClipBoundary")]
13423 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetClipBoundary")]
13426 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisualStyle")]
13429 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxViewReactor")]
13432 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewReactor_OnWorldToEyeChanged")]
13435 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewReactor_OnWorldToEyeChangedSwigExplicitCFxViewReactor")]
13438 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxViewReactor")]
13441 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxViewReactor_director_connect")]
13444 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxHistoryItem")]
13447 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryItem")]
13450 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxHistoryStack")]
13453 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_IsEmpty")]
13456 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_Top")]
13457 public static extern global::System.IntPtr
CFxHistoryStack_Top(global::System.Runtime.InteropServices.HandleRef jarg1);
13459 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_Pop")]
13462 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_Push")]
13463 public static extern void CFxHistoryStack_Push(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13465 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_GetStackDepth")]
13468 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxHistoryStack")]
13471 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryStack_director_connect")]
13474 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseHistory_Get")]
13475 public static extern global::System.IntPtr
CFxDatabaseHistory_Get(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13477 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseHistory_Add")]
13478 public static extern void CFxDatabaseHistory_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13480 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDatabaseHistory")]
13483 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxSelectionSetReactor")]
13486 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxSelectionSetReactor")]
13489 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_cast")]
13492 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_desc")]
13495 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_isA")]
13498 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_isASwigExplicitCFxSelectionSetReactor")]
13501 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_queryX")]
13504 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_queryXSwigExplicitCFxSelectionSetReactor")]
13507 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_createObject")]
13510 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStarted__SWIG_0")]
13513 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_0")]
13516 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStarted__SWIG_1")]
13519 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_1")]
13522 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionEnded")]
13525 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionEndedSwigExplicitCFxSelectionSetReactor")]
13528 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectAppended")]
13531 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectAppendedSwigExplicitCFxSelectionSetReactor")]
13534 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectRemoved")]
13537 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectRemovedSwigExplicitCFxSelectionSetReactor")]
13540 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectModified")]
13543 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectModifiedSwigExplicitCFxSelectionSetReactor")]
13546 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearStarted")]
13549 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearStartedSwigExplicitCFxSelectionSetReactor")]
13552 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearEnded")]
13555 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearEndedSwigExplicitCFxSelectionSetReactor")]
13558 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_director_connect")]
13559 public static extern void CFxSelectionSetReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_0 delegate0,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_1 delegate1,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_2 delegate2,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_3 delegate3,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_4 delegate4,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_5 delegate5,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_6 delegate6,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_7 delegate7,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_8 delegate8,
CFxSelectionSetReactor.
SwigDelegateCFxSelectionSetReactor_9 delegate9);
13561 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDisplayDevice")]
13564 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetFxDocument")]
13567 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_AddDrawHook")]
13568 public static extern void CFxDisplayDevice_AddDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13570 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_RemoveDrawHook")]
13573 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_Regen")]
13574 public static extern void CFxDisplayDevice_Regen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13576 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_Redraw")]
13579 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_InvalidateAllViewports")]
13582 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetMaximizedView")]
13585 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetMaximizedView")]
13588 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetSlideImage")]
13591 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetSlideImage")]
13592 public static extern void CFxDisplayDevice_SetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13594 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetEffectiveBackgroundColor")]
13597 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_IsSceneUpdatingActive")]
13600 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetSceneUpdatingActive")]
13603 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_ShrinkMemory")]
13606 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetDisplayContext")]
13609 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_RedrawEntity__SWIG_0")]
13612 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_RedrawEntity__SWIG_1")]
13615 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxPreviewBitmap")]
13618 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Create")]
13621 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Read__SWIG_0")]
13622 public static extern bool CFxPreviewBitmap_Read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13624 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_HasPreview")]
13627 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Clear")]
13630 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Read__SWIG_1")]
13631 public static extern bool CFxPreviewBitmap_Read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13633 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_DrawToHDC")]
13634 public static extern void CFxPreviewBitmap_DrawToHDC(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3,
int jarg4,
int jarg5,
int jarg6);
13636 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_GetBitmapAndPalette")]
13637 public static extern void CFxPreviewBitmap_GetBitmapAndPalette(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13639 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxPreviewBitmap_DrawNoPreview")]
13640 public static extern void CFxPreviewBitmap_DrawNoPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13642 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FxNoop")]
13645 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncA__SWIG_0")]
13648 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncA__SWIG_1")]
13651 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_0")]
13652 public static extern void ArgonAssertFuncW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4,
bool jarg5);
13654 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_1")]
13655 public static extern void ArgonAssertFuncW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13657 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_2")]
13660 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_3")]
13663 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonVerifyFuncA")]
13664 public static extern bool ArgonVerifyFuncA(
bool jarg1,
string jarg2,
int jarg3,
string jarg4,
string jarg5);
13666 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonVerifyFuncW__SWIG_0")]
13667 public static extern bool ArgonVerifyFuncW__SWIG_0(
bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13669 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_ArgonVerifyFuncW__SWIG_1")]
13672 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxTrace__SWIG_0")]
13673 public static extern global::System.IntPtr
new_CFxTrace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
int jarg2);
13675 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxTrace__SWIG_1")]
13678 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxTrace")]
13679 public static extern void delete_CFxTrace(global::System.Runtime.InteropServices.HandleRef jarg1);
13681 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_SetIgnoreAll")]
13684 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IsAllIgnored")]
13687 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_UseCustomAssert")]
13690 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IsCustomAssertUsed")]
13693 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FxCIPRecordAssertion")]
13696 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxDeviceReactor")]
13699 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewCreated")]
13700 public static extern void CFxDeviceReactor_ViewCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13702 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewCreatedSwigExplicitCFxDeviceReactor")]
13705 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewAdded")]
13706 public static extern void CFxDeviceReactor_ViewAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13708 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewAddedSwigExplicitCFxDeviceReactor")]
13711 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewRemoved")]
13712 public static extern void CFxDeviceReactor_ViewRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13714 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewRemovedSwigExplicitCFxDeviceReactor")]
13717 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewDestroyed")]
13718 public static extern void CFxDeviceReactor_ViewDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13720 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewDestroyedSwigExplicitCFxDeviceReactor")]
13723 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawStarted")]
13726 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawStartedSwigExplicitCFxDeviceReactor")]
13729 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawFinished")]
13732 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawFinishedSwigExplicitCFxDeviceReactor")]
13735 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenStarted")]
13738 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenStartedSwigExplicitCFxDeviceReactor")]
13741 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenFinished")]
13744 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenFinishedSwigExplicitCFxDeviceReactor")]
13747 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateStarted")]
13750 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateStartedSwigExplicitCFxDeviceReactor")]
13753 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateFinished")]
13756 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateFinishedSwigExplicitCFxDeviceReactor")]
13759 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewModified")]
13760 public static extern void CFxDeviceReactor_ViewModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13762 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewModifiedSwigExplicitCFxDeviceReactor")]
13765 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_SizeChanged")]
13768 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_SizeChangedSwigExplicitCFxDeviceReactor")]
13771 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_new_CFxDeviceReactor")]
13774 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDeviceReactor_director_connect")]
13775 public static extern void CFxDeviceReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_0 delegate0,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_1 delegate1,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_2 delegate2,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_3 delegate3,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_4 delegate4,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_5 delegate5,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_6 delegate6,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_7 delegate7,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_8 delegate8,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_9 delegate9,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_10 delegate10,
CFxDeviceReactor.
SwigDelegateCFxDeviceReactor_11 delegate11);
13777 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxRecentlyErased")]
13780 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentlyErased_GetObjects")]
13783 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxRecentlyErased_setEnabled")]
13786 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_SelectSubentsByPoint")]
13787 public static extern void CFxGeomUtils_SelectSubentsByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13789 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetNormalOfPlanarFace")]
13790 public static extern bool CFxGeomUtils_GetNormalOfPlanarFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13792 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetClosestPointInFace")]
13793 public static extern bool CFxGeomUtils_GetClosestPointInFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13795 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstObject__SWIG_0")]
13796 public static extern bool CFxGeomUtils_shootRayAgainstObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13798 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstObject__SWIG_1")]
13799 public static extern bool CFxGeomUtils_shootRayAgainstObject__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13801 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0")]
13802 public static extern bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13804 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1")]
13805 public static extern bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13807 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0")]
13808 public static extern bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13810 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1")]
13811 public static extern bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out
int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13813 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_SelectEdgeOnFace")]
13814 public static extern bool CFxGeomUtils_SelectEdgeOnFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, ref IntPtr jarg6);
13816 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetEdgesFromFace")]
13817 public static extern bool CFxGeomUtils_GetEdgesFromFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13819 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetTransform__SWIG_0")]
13822 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetTransform__SWIG_1")]
13825 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetImageBoundary")]
13828 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetPixelToModelTransform")]
13829 public static extern global::System.IntPtr
CFxGeomUtils_GetPixelToModelTransform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
double jarg4);
13831 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetPolySegment")]
13834 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_GetSegmentAtPoint")]
13835 public static extern bool CFxGeomUtils_GetSegmentAtPoint(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out
bool jarg5, out
bool jarg6);
13837 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeomUtils_ConvertToStdPolyline")]
13840 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxGeomUtils")]
13843 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_IHLData")]
13844 public static extern void delete_IHLData(global::System.Runtime.InteropServices.HandleRef jarg1);
13846 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IHLData_GetEntity")]
13849 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IHLData_GetFlags")]
13852 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_IHLData_IHLOriginal")]
13855 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IHLData_IHLOriginal_GetEntity")]
13858 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IHLData_IHLOriginal_GetSubEntity")]
13861 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_IHLData_GetOriginalEntities")]
13864 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_FlatShotHL")]
13865 public static extern int FlatShotHL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3,
bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13867 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_delete_CFxLicenseManager")]
13870 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_IsProductActivated__SWIG_0")]
13873 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_IsProductActivated__SWIG_1")]
13876 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_StartUpCheck")]
13879 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_StartActivation")]
13882 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_ShowDashboard")]
13885 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLicenseManager_ShowMessage")]
13886 public static extern void CFxLicenseManager_ShowMessage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
int jarg3);
13888 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_GetFxLicenseManager")]
13891 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxBagFiler_SWIGUpcast")]
13894 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGeometryClipper_SWIGUpcast")]
13897 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabase_SWIGUpcast")]
13900 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_OdStaticRxObject_OdDbSelectionSet_SWIGUpcast")]
13903 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxUnitsFormatter_SWIGUpcast")]
13906 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxView_SWIGUpcast")]
13909 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SWIGUpcast")]
13912 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommand_SWIGUpcast")]
13915 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryArg_SWIGUpcast")]
13918 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHistoryCommand_SWIGUpcast")]
13921 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocument_SWIGUpcast")]
13924 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentIterator_SWIGUpcast")]
13927 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCommandContext_SWIGUpcast")]
13930 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_SWIGUpcast")]
13933 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxEditorReactor_SWIGUpcast")]
13936 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactor_SWIGUpcast")]
13939 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_SWIGUpcast")]
13942 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxHostAppServices_SWIGUpcast")]
13945 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxInputPointManager_SWIGUpcast")]
13948 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_SWIGUpcast")]
13951 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDatabaseReactor_SWIGUpcast")]
13954 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxCurvePE_SWIGUpcast")]
13957 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxGripPointsPE_SWIGUpcast")]
13960 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxModule_SWIGUpcast")]
13963 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxAppInfo_SWIGUpcast")]
13966 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_SWIGUpcast")]
13969 [global::System.Runtime.InteropServices.DllImport(
"FxManaged.dll", EntryPoint=
"CSharp_PCAD_DOT_NET_CFxDisplayDevice_SWIGUpcast")]
delegate IntPtr SwigDelegateCFxCommand_4()
delegate IntPtr SwigDelegateCFxCommand_1()
delegate IntPtr SwigDelegateCFxCommand_0(IntPtr protocolClass)
delegate void SwigDelegateCFxCommand_5(bool undefIt)
delegate String SwigDelegateCFxCommand_10()
delegate uint SwigDelegateCFxCommand_9()
delegate int SwigDelegateCFxCommand_7(global::System.IntPtr pFxCmdCtx)
delegate Int32 SwigDelegateCFxCommand_6()
delegate void SwigDelegateCFxCommand_8()
delegate String SwigDelegateCFxCommand_3()
delegate String SwigDelegateCFxCommand_2()
delegate void SwigDelegateCFxDatabaseReactor_7(IntPtr pDb, IntPtr pObject, bool erased)
delegate void SwigDelegateCFxDatabaseReactor_3(IntPtr pDb, IntPtr pObject)
delegate IntPtr SwigDelegateCFxDatabaseReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxDatabaseReactor_11(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String appname, global::System.IntPtr objectIds)
delegate void SwigDelegateCFxDatabaseReactor_2(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_5(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_10(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String name)
delegate void SwigDelegateCFxDatabaseReactor_12(IntPtr pDb)
delegate void SwigDelegateCFxDatabaseReactor_8(IntPtr pDb, IntPtr pObject)
delegate IntPtr SwigDelegateCFxDatabaseReactor_1()
delegate void SwigDelegateCFxDatabaseReactor_9(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String name)
delegate void SwigDelegateCFxDatabaseReactor_6(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_4(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDeviceReactor_8()
delegate void SwigDelegateCFxDeviceReactor_2(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_0(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_9()
delegate void SwigDelegateCFxDeviceReactor_7()
delegate void SwigDelegateCFxDeviceReactor_6()
delegate void SwigDelegateCFxDeviceReactor_10(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_5()
delegate void SwigDelegateCFxDeviceReactor_3(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_4()
delegate void SwigDelegateCFxDeviceReactor_11(int iOverallWidth, int iOverallHeight)
delegate void SwigDelegateCFxDeviceReactor_1(global::System.IntPtr pView)
delegate void SwigDelegateCFxDocumentManagerReactor_13(bool bActivation)
delegate void SwigDelegateCFxDocumentManagerReactor_2(global::System.IntPtr pDocCreating)
delegate void SwigDelegateCFxDocumentManagerReactor_11(global::System.IntPtr pDocCreateCancelled)
delegate void SwigDelegateCFxDocumentManagerReactor_8(global::System.IntPtr pActivatingDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_4(global::System.IntPtr pDocToDestroy)
delegate IntPtr SwigDelegateCFxDocumentManagerReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxDocumentManagerReactor_12(global::System.IntPtr pDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_9(global::System.IntPtr pDeActivatedDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_3(global::System.IntPtr pDocCreating)
delegate void SwigDelegateCFxDocumentManagerReactor_5(global::System.IntPtr pDocToDestroyed, global::System.IntPtr strFileName)
delegate void SwigDelegateCFxDocumentManagerReactor_7(global::System.IntPtr pDoc)
delegate IntPtr SwigDelegateCFxDocumentManagerReactor_1()
delegate void SwigDelegateCFxDocumentManagerReactor_10(global::System.IntPtr pActivatedDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_14(global::System.IntPtr pDoc, global::System.IntPtr strFileName, int codePage, int openFlags)
delegate void SwigDelegateCFxDocumentManagerReactor_6(global::System.IntPtr pDoc)
delegate void SwigDelegateCFxEditorReactor_61(int activity, int numSteps)
delegate void SwigDelegateCFxEditorReactor_83(int type, int state)
delegate void SwigDelegateCFxEditorReactor_29(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_71()
delegate void SwigDelegateCFxEditorReactor_58(int activity)
delegate void SwigDelegateCFxEditorReactor_5(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_60(int activity)
delegate void SwigDelegateCFxEditorReactor_74([MarshalAs(UnmanagedType.LPWStr)]String contextString)
delegate void SwigDelegateCFxEditorReactor_84(global::System.IntPtr pSS)
delegate void SwigDelegateCFxEditorReactor_42(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_14(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_41(IntPtr pFromDb)
delegate IntPtr SwigDelegateCFxEditorReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxEditorReactor_62()
delegate void SwigDelegateCFxEditorReactor_36([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_38(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_89(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_82()
delegate void SwigDelegateCFxEditorReactor_12(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_65(UInt64 hwndMainFrame, bool moved)
delegate void SwigDelegateCFxEditorReactor_35(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_21(IntPtr pToDb, IntPtr pFromDb, global::System.IntPtr insertionPoint)
delegate void SwigDelegateCFxEditorReactor_81()
delegate void SwigDelegateCFxEditorReactor_30(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_55(int activity, bool undoAuto)
delegate void SwigDelegateCFxEditorReactor_78(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_39(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_23(IntPtr pToDb, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_66(global::System.IntPtr clickPoint)
delegate void SwigDelegateCFxEditorReactor_73()
delegate void SwigDelegateCFxEditorReactor_76(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String varName)
delegate void SwigDelegateCFxEditorReactor_69(bool largeBitmaps)
delegate void SwigDelegateCFxEditorReactor_28(IntPtr pToDb, IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_75([MarshalAs(UnmanagedType.LPWStr)]String contextString)
delegate void SwigDelegateCFxEditorReactor_13(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_26(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_25(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_72()
delegate void SwigDelegateCFxEditorReactor_37([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_2(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_40(IntPtr pToDb, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_9(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_59(int activity)
delegate void SwigDelegateCFxEditorReactor_19(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_44(IntPtr pToDb, global::System.IntPtr id, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_54(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_22(IntPtr pToDb, IntPtr pFromDb, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_53(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_33(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths, bool veto)
delegate void SwigDelegateCFxEditorReactor_18(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_80(global::System.IntPtr pWidget)
delegate void SwigDelegateCFxEditorReactor_49(int activity, [MarshalAs(UnmanagedType.LPWStr)]String xrefPath)
delegate void SwigDelegateCFxEditorReactor_6(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String intendedName)
delegate void SwigDelegateCFxEditorReactor_24(IntPtr pToDb, IntPtr idMap, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_31(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_63([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName)
delegate void SwigDelegateCFxEditorReactor_15(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String blockName, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_7(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String actualName)
delegate void SwigDelegateCFxEditorReactor_8(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_79(global::System.IntPtr pWidget)
delegate void SwigDelegateCFxEditorReactor_16(IntPtr pToDb, global::System.IntPtr xfm, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_3(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_56(int activity, int option)
delegate void SwigDelegateCFxEditorReactor_10(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_48(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_34(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_57(int activity)
delegate IntPtr SwigDelegateCFxEditorReactor_1()
delegate void SwigDelegateCFxEditorReactor_90()
delegate void SwigDelegateCFxEditorReactor_46(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_50(int activity, [MarshalAs(UnmanagedType.LPWStr)]String xrefPath)
delegate void SwigDelegateCFxEditorReactor_91()
delegate void SwigDelegateCFxEditorReactor_4(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_17(IntPtr pToDb, IntPtr idMap, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_45(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_27(IntPtr pFromDb, IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_86(IntPtr pEnt, global::System.IntPtr action, IntPtr matrix)
delegate void SwigDelegateCFxEditorReactor_88(global::System.IntPtr sFileName)
delegate void SwigDelegateCFxEditorReactor_77(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String varName)
delegate void SwigDelegateCFxEditorReactor_47(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_32(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_68(bool largeBitmaps)
delegate void SwigDelegateCFxEditorReactor_64(UInt64 hwndDocFrame, bool moved)
delegate void SwigDelegateCFxEditorReactor_70(global::System.IntPtr objectIds)
delegate void SwigDelegateCFxEditorReactor_43(global::System.IntPtr newId, global::System.IntPtr oldId)
delegate void SwigDelegateCFxEditorReactor_67(global::System.IntPtr clickPoint)
delegate void SwigDelegateCFxEditorReactor_87(IntPtr pDb, global::System.IntPtr sFileName, int iFileType, int iFileVersion)
delegate void SwigDelegateCFxEditorReactor_20(IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_11(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_85(global::System.IntPtr pSS)
delegate void SwigDelegateCFxEditorReactor_51(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_52(int activity, global::System.IntPtr blockId, [MarshalAs(UnmanagedType.LPWStr)]String newPath)
delegate bool SwigDelegateCFxHistoryStack_0()
delegate void SwigDelegateCFxHistoryStack_3(global::System.IntPtr pData)
delegate global::System.IntPtr SwigDelegateCFxHistoryStack_1()
delegate int SwigDelegateCFxHistoryStack_4()
delegate void SwigDelegateCFxHistoryStack_2()
delegate void SwigDelegateCFxInputContextReactor_11(int returnStatus, global::System.IntPtr arg1, double dAngle)
delegate void SwigDelegateCFxInputContextReactor_18(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_21(int returnStatus, global::System.IntPtr arg1, int retValue)
delegate void SwigDelegateCFxInputContextReactor_24(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_32(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_13(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr secondPoint)
delegate void SwigDelegateCFxInputContextReactor_36(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_33(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr entPicked, global::System.IntPtr pickPoint)
delegate void SwigDelegateCFxInputContextReactor_12(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_25(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr retValue)
delegate void SwigDelegateCFxInputContextReactor_14(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_35(int iResult, global::System.IntPtr arg1, global::System.IntPtr ss)
delegate void SwigDelegateCFxInputContextReactor_34(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_23(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr retValue)
delegate IntPtr SwigDelegateCFxInputContextReactor_1()
delegate void SwigDelegateCFxInputContextReactor_4(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_15(int returnStatus, global::System.IntPtr arg1, double dScale)
delegate IntPtr SwigDelegateCFxInputContextReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxInputContextReactor_5(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr pointOut)
delegate void SwigDelegateCFxInputContextReactor_8(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_27(int returnStatus, global::System.IntPtr arg1, int retValue)
delegate void SwigDelegateCFxInputContextReactor_16(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_2()
delegate void SwigDelegateCFxInputContextReactor_19(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr outKeyword)
delegate void SwigDelegateCFxInputContextReactor_31(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr entPicked)
delegate void SwigDelegateCFxInputContextReactor_6(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_17(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr outString)
delegate void SwigDelegateCFxInputContextReactor_7(int returnStatus, global::System.IntPtr arg1, double dAngle)
delegate void SwigDelegateCFxInputContextReactor_20(int pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_28(double pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_10(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_3()
delegate void SwigDelegateCFxInputContextReactor_26(int pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_29(int returnStatus, global::System.IntPtr arg1, double retValue)
delegate void SwigDelegateCFxInputContextReactor_37(int iResult, global::System.IntPtr pickPoint, IntPtr vector, global::System.IntPtr arg3)
delegate void SwigDelegateCFxInputContextReactor_30(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_9(int returnStatus, global::System.IntPtr arg1, double dDistance)
delegate void SwigDelegateCFxInputContextReactor_22(global::System.IntPtr arg0)
delegate void SwigDelegateCFxLayoutManagerReactor_13([MarshalAs(UnmanagedType.LPWStr)]String newTableName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_10([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxLayoutManagerReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxLayoutManagerReactor_11([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_5([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_8([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_9([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_2([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_15([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_12([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_4([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_6([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxLayoutManagerReactor_1()
delegate void SwigDelegateCFxLayoutManagerReactor_14([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, global::System.IntPtr oldLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_7([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, global::System.IntPtr oldLayoutId, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_3([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxModule_2()
delegate String SwigDelegateCFxModule_6()
delegate IntPtr SwigDelegateCFxModule_0(IntPtr protocolClass)
delegate IntPtr SwigDelegateCFxModule_1()
delegate int SwigDelegateCFxModule_7(int e, global::System.IntPtr pData)
delegate void SwigDelegateCFxModule_5()
delegate void SwigDelegateCFxModule_3()
delegate int SwigDelegateCFxModule_8(int e)
delegate void SwigDelegateCFxModule_4()
delegate void SwigDelegateCFxProfileManagerReactor_12(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_6(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_5(global::System.IntPtr currentProfile, global::System.IntPtr pCurrentProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_3(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_9(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_10(global::System.IntPtr profileName, global::System.IntPtr pProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_13(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_4(global::System.IntPtr currentProfile, global::System.IntPtr pCurrentProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_0(global::System.IntPtr newProfile)
delegate void SwigDelegateCFxProfileManagerReactor_7(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_2(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_8(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_11(global::System.IntPtr profileName, global::System.IntPtr pProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_1(global::System.IntPtr newProfile)
delegate IntPtr SwigDelegateCFxSelectionSetReactor_0(IntPtr protocolClass)
delegate IntPtr SwigDelegateCFxSelectionSetReactor_1()
delegate void SwigDelegateCFxSelectionSetReactor_9()
delegate void SwigDelegateCFxSelectionSetReactor_4()
delegate void SwigDelegateCFxSelectionSetReactor_3(global::System.IntPtr pData)
delegate void SwigDelegateCFxSelectionSetReactor_5(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_2(int eMethod, global::System.IntPtr pointsWCS, global::System.IntPtr pView)
delegate void SwigDelegateCFxSelectionSetReactor_6(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_7(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_8()
delegate global::System.IntPtr SwigDelegateCFxTracker_4()
delegate bool SwigDelegateCFxTracker_6(global::System.IntPtr pHitTestInfo)
delegate bool SwigDelegateCFxTracker_5(global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_2(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_7(global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_1(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_0(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate bool SwigDelegateCFxTracker_3(global::System.IntPtr pInputManager)
delegate void SwigDelegateCFxUIReactor_3(global::System.IntPtr pUIToolBar)
delegate void SwigDelegateCFxUIReactor_6(global::System.IntPtr pUIToolBar, bool bVisible)
delegate void SwigDelegateCFxUIReactor_9()
delegate void SwigDelegateCFxUIReactor_2(global::System.IntPtr pMenuItem)
delegate void SwigDelegateCFxUIReactor_5(global::System.IntPtr pUIMenuItem)
delegate void SwigDelegateCFxUIReactor_8()
delegate void SwigDelegateCFxUIReactor_1(global::System.IntPtr pItemDef)
delegate void SwigDelegateCFxUIReactor_10(global::System.IntPtr strId, global::System.IntPtr pControl)
delegate void SwigDelegateCFxUIReactor_7(global::System.IntPtr pSubMenu)
delegate void SwigDelegateCFxUIReactor_4(global::System.IntPtr pUIItemDef)
delegate void SwigDelegateCFxUIReactor_0(global::System.IntPtr pToolBarItem)
delegate void SwigDelegateCFxViewReactor_0(global::System.IntPtr pView)
static void SWIGRegisterExceptionCallbacks_PCADGlobals(ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)
delegate void ExceptionDelegate(string message)
delegate void ExceptionArgumentDelegate(string message, string paramName)
static void SWIGRegisterExceptionCallbacksArgument_PCADGlobals(ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)
static void Set(global::System.Exception e)
static global::System.Exception Retrieve()
static void SWIGRegisterStringCallback_PCADGlobals(SWIGStringDelegate stringDelegate)
delegate string SWIGStringDelegate(string message)
static void SWIGRegisterWStringCallback_PCADGlobals(SWIGWStringDelegate wstringDelegate)
delegate string SWIGWStringDelegate(global::System.IntPtr message)
static void CFxEditorReactor_appDeactivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnItemDefinitionAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_binaryW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssnamexA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, uint jarg5)
static global::System.IntPtr new_KeywordVector__SWIG_0()
static global::System.IntPtr CFxSystemFiles_GetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxString_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_vportsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUserIO_SetIsPrintSelectResults(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_38(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static void CFxDeviceReactor_RegenFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_InitgetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawContext_SetClipPath(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxViewDrawInfo_InitializeView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6, int jarg7)
static int CFxVSTA_GetLanguage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_EntityMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIContext_GetMenuContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_OrientToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int dlg_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_pFilter_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static global::System.IntPtr CFxFileData_Create__SWIG_1()
static void CFxPreferencesUser_SetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxUserIO_GetOrient__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static bool CFxUIMenuItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxApplications_FileDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryArg(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_set_progress_state(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDrafting_SetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxUIToolbarItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static Int32 CFxPreferencesDrafting_GetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageLibraryW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6, [MarshalAs(UnmanagedType.LPWStr)]string jarg7)
static void CFxInputContextReactor_BeginGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetFxIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IHLData_GetOriginalEntities(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIAcceleratorsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_closeAborted(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static string FDT_FLX_INFO_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUITabletMenusCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxAPI_fdt_tbldelA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static IntPtr CFxDocumentManagerReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_45(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_selcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static IntPtr new_CFxLayoutManagerReactor()
static bool CFxSystemServices_IsApplicationExiting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recA_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setLIMMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_AutocompleteSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_EndTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingLicenseMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setTEXTSTYLE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, string jarg6)
static global::System.IntPtr CFxUserIO_GetPromptString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesDiscardDuplicatesSettings_GetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxGripPointsPE_desc()
static void delete_CFxSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_selectionSetCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr GetFxCommandContext(HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxEdInputTracker_subWorldDrawSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_filename_extensionA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void delete_CFxHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr TRACKER_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr dcl_u_val_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16)
static void CFxSystemFiles_SetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOW_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_LINE()
static void P_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxOsnapPoint_GetModeName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewModifiedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesPackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dcl_u_val_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxAPI_GetSSPtr(IntPtr jarg1)
static bool CFxPreferencesUser_GetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIItemDefinitionCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUIToolbarItem_GetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDrafting_SetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxInputContextReactor_EndGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr CFxInputContextReactor_cast(HandleRef jarg1)
static int CFxUnitsFormatter_StringToReal__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxOtrackPoint_GetOtrackLinesCrossSize(bool jarg1)
static bool CFxHitTestInfo_IsCancelPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxStringArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIToolbarItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_ssfree(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxInputContextReactor_BeginGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_52(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static IntPtr CFxDocument_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryCommand_GetNameLocal(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static char PRINTREC_Type_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxCommand_groupName(HandleRef jarg1)
static void dcl_resbuf_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxModule_event___SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUITabletMenusCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHistoryObjectArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommandContext_GetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxMainFrame_IsTextWindowVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compare__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxSystemFiles_GetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_IsValidFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxAppInfo_Save(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesSystem_SetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUI_RemoveUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_CFxCommandWindowInfo_visibleSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_34(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4)
static short FDT_GENOUT_AREA_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_replace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_flxropenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxSelectionSet_MergeOptions_m_Classes_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint CFxSelectionData_GetNumEntities(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetPreferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getdistatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, out double jarg4)
static IntPtr new_CFxDatabaseReactor()
static global::System.IntPtr CFxString_arg__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxInputContextReactor_BeginSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static Int16 CFxDatabase_getHANDLES(HandleRef jarg1)
static void fdt_tablet_recW_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int dlg_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getsecondderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxPreviewBitmap_DrawNoPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint CFxCommandContext_GetCommandStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_filename_baseW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static void CFxViewDrawInfo_SetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setINSNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void delete_CFxPreferencesMLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getFilletPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static UInt16 CFxPreferencesPackAndGo_GetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_binary_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static Int16 CFxDatabase_getXCLIPFRAME(HandleRef jarg1)
static void CFxStringArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTrackerContext_IsForActiveView(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEditorReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxDocumentManagerReactor_cast(HandleRef jarg1)
static void dcl_u_val_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxUIButton_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxUITabletMenu_SetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static uint CLASS_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_iscntrl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_palhideA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxDatabase_setOFFSETDIST(HandleRef jarg1, double jarg2)
static void CFxTracker_OnMainSelectionSetChangedSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxRecentFiles_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_InitializeFromDbViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, bool jarg5)
static void delete_CFxPreferencesDimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStarted__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static Int16 CFxViewDrawInfo_GetFxCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void CFxInputContextReactor_EndGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxVSTA_StopMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEntityData_GetLayerId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesDisplay_GetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDoubleClickAction_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryStack(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_25(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4)
static int CFxAPI_fdt_isalpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setLASTPOINT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonQuickAccessBarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxStatusBar_RefreshCoords__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getangleW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static void P_OLEOBJ_LlObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxStringArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreviewbitmapA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxPreferencesContextualHelp_SetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_DialogStart(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxAPI_fdt_DelRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesLayerStateManager_SetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint TRACKER_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_getDWGCODEPAGE(HandleRef jarg1)
static int CFxProfileStorage_Save(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_entpos(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, IntPtr jarg3)
static short fdt_resbufA_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_Systems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_InitializeViewByExtents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_GetFILLMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_createObject()
static IntPtr new_ClassPtrArray__SWIG_2(int jarg1)
static void fdt_resbufA_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOpenSave_GetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static bool CFxUIMenuItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDesignResources_GetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedCloud_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesCloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIItemDefinitionCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSystemServices_WriteLine__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_xformss(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_arg__SWIG_44(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxUIToolbarItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_SetFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnSubMenuAboutToShowSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonTabSelectors(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static global::System.IntPtr CFxHistoryStack_Top(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string dcl_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxUI_AddUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorSelectionData_start(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static bool CFxViewDrawInfo_IsDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_drxloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDeviceReactor_ViewRemovedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxPreferencesDesignResources_GetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetA_key_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static double CFxViewDrawInfo_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setdbmodhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxUIImageItem_SetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUI_DestroyMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr GetActiveFxView(HandleRef jarg1)
static void SIZE_T_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxUIImageItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static long fdt_u_valW_mnInt64_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_0()
static uint CFxAPI_fdt_getrgb(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSystemServices_GetFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SIZE_T_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ClassPtrArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_LayerStateSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr dcl_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static short FDT_GENOUT_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetContextMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_angtofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4)
static int CFxAPI_fdt_add_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxVectorizeDevice_desc()
static void CFxDatabase_setVIEWSIZE(HandleRef jarg1, double jarg2)
static void CFxString_clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setpreselect(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_grvecsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void TRACKER_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)
static void CFxPreferencesDwgStandards_SetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_tblpurgeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxSystemServices_FileDialog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxAPI_dcl_fill_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static void delete_CFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTrace(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_User(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxSystemServices_CFxExpressionParserData()
static void CFxInputContextReactor_BeginGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static void CFxPreferencesCloudStorage_SetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_transA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static void CFxSystemFiles_SetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxTrackerContext_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetOsnapPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setDWGCODEPAGE(HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_TileSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static bool CFxGeomUtils_GetNormalOfPlanarFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUITempOverrideKey_GetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_cast(HandleRef jarg1)
static int CFxAPI_fdt_findfileW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void fdt_u_valW_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxViewDrawInfo_GetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SIZE_T_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getUNDOCTL(HandleRef jarg1)
static void CFxHistoryObjectArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_DoSSGet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10)
static void CFxSystemServices_Help(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_setenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxInputPointManager_SetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint P_FILL_POLY_nCount_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDockableWindow_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxStringArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxUIReactor_OnToolbarItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_32(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5, ushort jarg6)
static IntPtr CFxCommandContext_desc()
static String CFxDatabase_getUSERS5(HandleRef jarg1)
static IntPtr P_OLEOBJ_pReserved1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_deldbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxGripPointsPE_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPluginModuleInternal_setEdition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DatabaseAttachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string fdt_binaryW_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_getCTAB(HandleRef jarg1)
static global::System.IntPtr CFxString_trimRightW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_retstrA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int dlg_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxApplications_GetExtendedApiModules(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxDatabase_getUCSORG(HandleRef jarg1)
static int CFxAPI_fdt_tbldelW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxHistoryObjectArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxStatusBar_StopProgressor(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_resbufW_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxUI_DestroyToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setUSERS2(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxMainFrame_hideApplicationWindows(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsRightButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static uint CFxSelectionSet_GetLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FileNameRetValArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxEdInputTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setOLEFRAME(HandleRef jarg1, sbyte jarg2)
static void FDT_FLX_INFOW_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryObject_Copy(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setLENSLENGTH(HandleRef jarg1, double jarg2)
static global::System.IntPtr new_CFxSelectionSetReactor()
static int CFxLicenseInfo_SaveActivationCode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_Get3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_IsEagerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxEdInputTracker_IsSuitableForContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_ImageStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3)
static void CFxPreferencesMLeaderSettings_SetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxEditorReactor_selectionSetCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxEntityData_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valA_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionData_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_46(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxHitTestInfo_IsRightButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int fdt_u_valW_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint TRACKER_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_u_valW_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEntityData_GetIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_GetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxAPI_fdt_inputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxUserIO_DoNentsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_fdt_textboxW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static string VSTA_CONTEXT_userFolder_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxHitTestInfo_GetMousePositionF(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOtrackPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getUCSICON(HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_regappA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_VPORT_EXT_INFO_hDc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSystemServices_CFxExpressionParserData(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_action_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static global::System.IntPtr CFxString_arg__SWIG_53(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxViewDrawInfo_SetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_VPORT_EXT_INFO_WinWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dcl_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxGeometryClipper_SetClipBoundary__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIImageItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static double fdt_u_valA_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsTransparentCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesDisplay_Set3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSettings_RemoveKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_arg__SWIG_37(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3, ushort jarg4)
static void fdt_u_valA_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUserIO_GetDist__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxPreferencesPlotSettings_GetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1)
static double IMAGE_PNT_3D_z_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxCommand_undefine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getHPDRAWORDER(HandleRef jarg1)
static void CFxDatabase_setXCLIPFRAME(HandleRef jarg1, Int16 jarg2)
static IntPtr CFxDocumentIterator_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxPreferencesOutput_GetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static Int32 CFxPreferencesSystem_GetUseDefaultFileLocationSetting(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_OLEOBJ_UrObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_EmitCommands(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxLicenseInfo_GetLicenseDays(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valW_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_remove(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxDatabase_getUCSVP(HandleRef jarg1)
static IntPtr FDT_GENOUT_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_from_utf8_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDisplay_GetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_appActivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_WriteLine__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxUIAccelerator_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_mainFrameCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetInitialActiveAreaByWCSContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxUIImageItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonPanelItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetAccelerators(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLIMMIN(HandleRef jarg1)
static int CFxAPI_fdt_translateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5)
static UInt32 CFxPreferencesDisplay_GetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblcheckrefW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void SIZE_T_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static IntPtr CFxGeomUtils_ConvertToStdPolyline(HandleRef jarg1)
static void CFxDatabase_setUCSNAME(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButtonsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IMAGE_PNT_3D_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSelectionSetReactor_OnClearStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint KeywordVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPackAndGo_SetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static global::System.IntPtr CFxDatabase_getINSBASE(HandleRef jarg1)
static bool CFxView_InsideTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_getprinterlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string 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 CFxEditorReactor_endModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxOsnapPoint_GetOsnapColor()
static void PRINT_EXT_INFO_LowLeCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=2)]double[] jarg2)
static void CFxProfileManagerReactor_currentProfileWillBeResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_addimage2libA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, ushort jarg5)
static double CFxRangeDouble_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDatabase_getRealClassName(IntPtr jarg1)
static void VSTA_CONTEXT_templates_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxInputPointManager_IsOsnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int DEVPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreviewbitmapW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxDatabase_getUCSFOLLOW(HandleRef jarg1)
static int CFxAPI_fdt_registerA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static bool CFxViewDrawInfo_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUIItemDefinition_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_Update__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxString_find__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonTabItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimRight__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxString_arg__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxDatabase_setHPBOUND(HandleRef jarg1, Int16 jarg2)
static IntPtr CFxInputContextReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_desc()
static int CFxAPI_dlg_TileActionA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxUITempOverrideKeysCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4, ushort jarg5)
static Int32 dcl_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_OLEOBJ(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_handentW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3)
static bool CFxPreferencesSystem_GetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSelectionSet_GetCommonBaseClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxopenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxUI_DestroyRibbonRowItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetUIItemDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setTDUCREATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIImageItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLicenseInfo_GetLicenseOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsPlotGeneration(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryObjectArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static IntPtr FDT_GENOUT_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_removeW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxPreferencesPlotSettings_SetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxSystemFiles_SetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxPreferencesTablet_SetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxInputPointManager_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxViewDrawInfo_IsFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxView_PointToWCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_registerW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_dcl_start_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static bool CFxPreferencesSystem_GetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_tblcheckrefA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxPreferencesLayerPallete_SetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_SetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxView_ZoomExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valW_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void P_FILL_POLY_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_wcmatchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxString_mid__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxMainFrame_CFxToolBars_SetVisible__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static double CFxDatabase_getOFFSETDIST(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetLicenseServer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUnitsFormatter_SetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_40(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4)
static void FDT_FLX_INFOW_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssgetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6)
static global::System.IntPtr CFxString_arg__SWIG_31(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static void CFxDocumentManagerReactor_DocumentToBeDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxUserIO_MessageLoop_Obsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesOutput_SetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogDonePositioned(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, out int jarg4, out int jarg5)
static bool CFxLicenseInfo_IsTrialVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPMODE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDisplayDevice_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_MatWcsToVcs_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_fgetenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxEdInputTracker_IsSuitableForContextSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeftA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_CFxKeywordArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDiscardDuplicatesSettings_GetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_copyresbufA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_dlg_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RegenStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxStringArray__SWIG_2(int jarg1)
static int CFxUserIO_DoEntsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7)
static global::System.IntPtr CFxHistoryCommand_GetArg(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxHitTestInfo_IsShiftPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_DelPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeft__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void fdt_tablet_recA_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_0(HandleRef jarg1)
static string fdt_u_valA_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarremoveA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxGeometryClipper_desc()
static global::System.IntPtr CFxViewDrawInfo_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxViewDrawInfo_UseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxOtrackPoint_GetOtrackBasePointCrossSize()
static bool CFxViewDrawInfo_IsRapidMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetResBufDDW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3, int jarg4)
static IntPtr CFxSelectionSetReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINTREC_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxString_replace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxSelectionSetReactor_createObject()
static int CFxAPI_fdt_curve_getparamatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, out double jarg4)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setUCSFOLLOW(HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateRasterImage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_ConvertToA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static global::System.IntPtr new_dcl_resbuf()
static int CFxAPI_fdt_tolower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void FDT_FLX_INFO_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_compare__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_snvalidW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxUserIO_GetAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxProfileManagerReactor_currentProfileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getEXTMIN(HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLIMMAX(HandleRef jarg1)
static void CFxInputContextReactor_EndGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxPreferencesDrafting_SetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxString_format__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_loadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxPreferences_Display(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_41(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxSelectionSet_SelectByPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxKeywordArray_sortit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxFileData_IsLockedGlobal(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcurr_mousepos(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxSystemServices_DisableUI__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void P_IMAGE_LlDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_AuditPrintReport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxProfileManagerReactor_currentProfileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewAddedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleMenuCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr cursordef_cursorpnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedCloud_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesTablet_SetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxBagFiler_isA(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDoubleClickAction_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_norm_dxfcode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOpenSave_SetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr FDT_FLX_INFOW_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_IMAGE()
static int CFxAPI_fdt_toolbarmatrixgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesPlotSettings_GetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setCDATE(HandleRef jarg1, double jarg2)
static int CFxUserIO_GetInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxPreferencesEntityMove_GetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr KeywordVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static UInt16 CFxPreferencesPackAndGo_GetBindType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesCloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsRefeditActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIDockableWindow_GetAvailableOrientations(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_binaryA_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxStatusBar_StartProgressor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 dcl_resbuf_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void P_FILL_POLY_nCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr dlg_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_VportMax_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxPreferencesDisplay_SetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_isselecthook(global::System.Runtime.InteropServices.HandleRef jarg1)
static double WORLDPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1, double 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 CFxAPI_fdt_nentselpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxUIButton_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxString_GetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetFxWorkingSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static int NullViewportKey_get()
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9)
static void delete_CFxGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMiddleButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_VportMin_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxStatusBar_SetText(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void FDT_FLX_INFOA_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVectorizeDevice_GetModelLineWeights(IntPtr jarg1, double jarg2)
static global::System.IntPtr CFxSystemFiles_GetSessionFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13)
static Int32 CFxPreferencesPlotSettings_GetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_DevHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxSelectionSet_GetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_LockFile(HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_SIZE_T_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int TRACKER_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxDocumentManagerReactor()
static global::System.IntPtr CFxString_arg__SWIG_36(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr KeywordVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxFileData_Lock(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_delimagefromlibA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static UInt32 CFxViewDrawInfo_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_SetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAppInfo_GetStatus(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_createObject()
static void fdt_u_valW_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenusCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_IsFrontClipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_FILL_POLY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static sbyte CFxDatabase_getOLEFRAME(HandleRef jarg1)
static int CFxAPI_fdt_ssgetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6)
static void CFxSelectionSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSetReactor_cast(HandleRef jarg1)
static bool CFxLicenseManager_StartUpCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_isA(HandleRef jarg1)
static void CFxViewDrawInfo_SetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreviewBitmap_Read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDeviceReactor_RegenFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetBackground__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, bool jarg3)
static void CFxInputContextReactorExtended_EndModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxProfileManager_ProfileExport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static sbyte CFxDatabase_getDWFFRAME(HandleRef jarg1)
static void CFxInputPointManager_GetCursorSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxSystemFiles_SetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DatabaseDetached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_GetInitialDirPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDatabase_setOPENFORMATVERSION(HandleRef jarg1, Int16 jarg2)
static void CFxSystemServices_ExitApplication__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxDocument_IsBEditActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxVectorizeDevice_GetCurrentRenderEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static string VSTA_CONTEXT_desktop_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS3(HandleRef jarg1)
static void CFxCommand_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxCommand.SwigDelegateCFxCommand_0 delegate0, CFxCommand.SwigDelegateCFxCommand_1 delegate1, CFxCommand.SwigDelegateCFxCommand_2 delegate2, CFxCommand.SwigDelegateCFxCommand_3 delegate3, CFxCommand.SwigDelegateCFxCommand_4 delegate4, CFxCommand.SwigDelegateCFxCommand_5 delegate5, CFxCommand.SwigDelegateCFxCommand_6 delegate6, CFxCommand.SwigDelegateCFxCommand_7 delegate7, CFxCommand.SwigDelegateCFxCommand_8 delegate8, CFxCommand.SwigDelegateCFxCommand_9 delegate9, CFxCommand.SwigDelegateCFxCommand_10 delegate10)
static global::System.IntPtr CFxSystemFiles_GetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnClearEnded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxUserIO_GetOrient__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static int CFxAPI_fdt_regen(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getExtensionPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsSetVarActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxSelectionSet_SelectGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static SWIGExceptionHelper swigExceptionHelper
static void delete_CFxMainFrame_CFxToolBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDeviceReactor_UpdateFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_remdelall(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxCommand_HasFlag(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxIteratorSelectionData_done(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getTEXTSIZE(HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectPrevious(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_tile_keyW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static double CFxPreferencesMLeaderSettings_GetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarremoveW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxHitTestInfo_IsDragEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_angtofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4)
static void delete_CFxHistoryObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsKeyboardReleaseEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncW__SWIG_0(bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxHitTestInfo_IsArrowUpPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_isA(HandleRef jarg1)
static IntPtr dlg_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxStatusBar_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTrackerContext_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxDocumentManagerReactor_createObject()
static global::System.IntPtr new_CFxTrace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_reverseFindA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxString_wide_strW(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsLISPActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_inputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxUserIO_GetCorner__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void delete_dlg_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4, short jarg5)
static global::System.IntPtr CFxSystemServices_GetAvailableFonts(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxAPI_fdt_newrbA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxTracker_DrawDDTrackerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxHitTestInfo_GetGestureSwipeAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIMenuItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_InitializeView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6)
static int CFxUIToolbarItem_GetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDONUTOD(HandleRef jarg1, double jarg2)
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 bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesAutocomplete_GetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesEnterpoint_SetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_39(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToInt(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxVectorizeDevice_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_FLX_INFOA()
static int CFxAPI_fdt_getfiledA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void fdt_resbufW_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getdistatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, out double jarg4)
static void CFxPreferencesMLeaderSettings_SetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxEdInputTracker_IsDrawInAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLicenseInfo_CleanUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_PointToSCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_GENOUT_AREA_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxEdInputTracker_IsDrawInAllViewportsSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxViewDrawInfo_SetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_GetViewportExternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHistoryObject_IsCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_shootRayAgainstObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_dcl_action_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr jarg4)
static void CFxDocumentManagerReactor_DocumentActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSelectionSet_MergeOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3)
static double CFxDatabase_getDONUTID(HandleRef jarg1)
static void CFxSystemFiles_SetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxAPI_fdt_free(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static uint CFxHistoryObjectArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxRibbonContextualState_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_loadedW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_UpdateStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_SelectEdgeOnFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, ref IntPtr jarg6)
static global::System.IntPtr CFxSystemServices_GetIApplication(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsArrowDownPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_start_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static IntPtr CFxDocument_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesPlotSettings_GetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxModule_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setEXTMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 global::System.IntPtr CFxViewDrawInfo_GetAdjustedProjectionMatrix(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3)
static void CFxView_SetElevation(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_ssgetfirstW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUIToolbarItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateGroupIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxUserIO_GetDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void delete_CFxRangeInt(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_SizeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxProfileManagerReactor_currentProfileChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxIteratorEntityData_done(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CLASS_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxPreferencesDisplay_GetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncA__SWIG_0(string jarg1, int jarg2, string jarg3, string jarg4, bool jarg5)
static void CFxUIItemDefinition_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_isNull(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetText(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_2(int jarg1)
static void CFxPreferencesSystem_SetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileWillReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getCMDNAMES(HandleRef jarg1)
static void CFxDatabase_setWORLDUCS(HandleRef jarg1, Int16 jarg2)
static void CFxDeviceReactor_ViewDestroyedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOpenSave_GetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEditorReactor_desc()
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_ClearOtrackBasePoints(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewportSnapShot_InitializeFromView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxRecentlyErased_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static string FDT_FLX_INFOA_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RedrawEntity__SWIG_0(HandleRef jarg1, int jarg2, int jarg3, IntPtr jarg4)
static void CFxDeviceReactor_ViewModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetDarkIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIButton_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attr_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static void CFxAPI_fdt_failA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_findA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void cursordef_cursorpnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void delete_IMAGE_PNT_3D(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static int CFxAPI_GetMatrix3D(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHostAppServices_getMappedFont__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxDeviceReactor_SizeChangedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void fdt_u_valA_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_PRINT_EXT_INFO()
static void DEVPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIMenuItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxStringArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetAutoName()
static void CFxAPI_fdt_pop_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxDisplayDevice_GetEffectiveBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxGeometryClipper(HandleRef jarg1)
static int CFxAPI_fdt_menucmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_ssnamexW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, uint jarg5)
static void CFxDatabase_setINSBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_dcl_u_val()
static int CFxAPI_dlg_ImageLibraryA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6, string jarg7)
static void CFxInputContextReactor_BeginGetString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIMenuItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static UInt32 CFxPreferencesDisplay_GetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxProfileManagerReactor_currentProfileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_AngleToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void dcl_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesTablet_SetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void P_IMAGE_UrDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_curve_getpointatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxInputPointManager_GetRubberLineClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_alertA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static String CFxDatabase_getDWGNAME(HandleRef jarg1)
static void CFxPreferencesLayerStateManager_SetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEditorReactor_windowStateChangedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void SIZE_T_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_GENOUT_LINE()
static int CFxAPI_dlg_TileSetFontW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static int fdt_VPORT_EXT_INFO_WinWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVSTA_GetMacros(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_StartUndoRecord(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsAltPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_FLX_INFOA_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static Int32 CFxPreferencesDrafting_GetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grvecsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ArgonAssertFuncW__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, bool jarg5)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ListSetTabStopsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static IntPtr CFxVectorizeDevice_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxProfile_GetRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_nFlags_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxSystemServices_GetPassword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, ref IntPtr jarg4)
static int CFxPreferencesDisplay_GetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_drxunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDocument_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_WORLDPOINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEvalModeHandler_DoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxFileData_SetFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_recW_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_Set3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsMiddleButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManager_addReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHostAppServices_SaveVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxModule(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentActivationModifiedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDatabase_getEXTMAX(HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_LoadFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocument_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_cast(HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_Cast(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_48(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getBACKZ(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesMLeaderSettings_GetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static global::System.IntPtr CFxString_makeUpper(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isdbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_strfreeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void delete_KeywordPair(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesEnterpoint_GetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetSubControl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxHistoryObjectArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_LoadFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxPreferences_PlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHitTestInfo_EnableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxUserIO_GetFileNames__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16)
static int CFxAPI_fdt_palgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double CFxPreferencesPlotSettings_GetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSettings_GetGroups(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesDrafting_GetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13)
static short fdt_tablet_recW_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_MatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncA__SWIG_1(string jarg1, int jarg2, string jarg3, string jarg4)
static void FDT_FLX_INFO_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_Classes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDatabaseReactor_getRealClassName(IntPtr jarg1)
static void dlg_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxPreferencesDesignResources_SetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesSystem_GetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIImageItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setCMDACTIVE(HandleRef jarg1, Int16 jarg2)
static void CFxMainFrame_SetInput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int fdt_u_valA_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabaseReactor_SWIGUpcast(global::System.IntPtr jarg1)
static UInt16 CFxViewDrawInfo_GetVIEWRES(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_ClassPtrArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxDatabase_setUSERS4(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr FileNameRetValArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxHistoryObjectArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr fdt_u_valA_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CLASS_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setVIEWCTR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxApplications_GetAppCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void cursordef_cursorstyle_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setWRITESTAT(HandleRef jarg1, Int16 jarg2)
static Int16 dcl_u_val_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getHPBOUND(HandleRef jarg1)
static void CFxHistoryObjectArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_done_positioned_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, out int jarg5)
static void CFxDatabase_setGRIDUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDwgStandards_GetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputPointManager_AllowAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesDimensionPalette_GetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDiscardDuplicatesSettings_SetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesPlotSettings_GetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_cast(HandleRef jarg1)
static int CFxUserIO_GetDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_GetPointFDT__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxDatabase_setLIMMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxMainFrame_CFxCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_initgetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxInputPointManager_AddTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxMainFrame_CFxCommandWindowInfo_linesCountMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabaseReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_0 delegate0, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_1 delegate1, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_2 delegate2, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_3 delegate3, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_4 delegate4, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_5 delegate5, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_6 delegate6, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_7 delegate7, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_8 delegate8, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_9 delegate9, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_10 delegate10, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_11 delegate11, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_12 delegate12)
static global::System.IntPtr CFxInputPointManager_GetOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_Initget__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxView_EnterDragMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_binaryA_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDeviceReactor_RedrawFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStarted__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr P_OLEOBJ_LlClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarVisibilityChangedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr GetFxLicenseInfo()
static bool CFxHitTestInfo_IsInsideLISP(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxUIImageItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_Regen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommand_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUIReactor_OnSubMenuAboutToShow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenu_SetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_load_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxDeviceReactor_RegenStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SIZE_T_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxSystemFiles_GetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_textpage(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_GetClassesFound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void KeywordVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_getresourceimageW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_setdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short 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 global::System.IntPtr CFxHostAppServices_translateAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxViewReactor.SwigDelegateCFxViewReactor_0 delegate0)
static global::System.IntPtr CFxUITempOverrideKey_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxrnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_genout_enamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_CFxToolBars_SetVisible__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxInputContextReactor_BeginGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesAutocomplete_SetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxPreferences_Drafting(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_inters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5, int jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxString_SetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_setmousehook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
static void CFxUI_DestroyTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_OLEOBJ_LlClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryObjectArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesTablet_SetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool IsNotEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_SetTitleSuffix(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDisplayDevice_GetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSettings_HasKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxSelectionSetReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_42(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_find__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3)
static bool CFxViewDrawInfo_HardwareTransformationsAllowed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesHeadsUpDisplay_SetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUnitsFormatter_RealToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void FDT_FLX_INFOA_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxKeywordArray_global__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxString_arg__SWIG_29(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4)
static int CFxCurvePE_getGeneralCurve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr jarg3, bool jarg4, IntPtr jarg5)
static bool CFxEdInputTracker_IsPreviewEnabledSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dcl_mode_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static void CLASS_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSelectionSetReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_0 delegate0, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_1 delegate1, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_2 delegate2, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_3 delegate3, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_4 delegate4, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_5 delegate5, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_6 delegate6, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_7 delegate7, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_8 delegate8, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_9 delegate9)
static IntPtr CFxEditorReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_GENOUT_LINE(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_UseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHistoryCommand_GetArgCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_rec_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_GetWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxIteratorSelectionData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxOsnapPoint_GetOsnapSize()
static global::System.IntPtr CFxAPI_ConvertToA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPluginModuleInternal_initApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_cast(HandleRef jarg1)
static void CFxPreferencesDisplay_SetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static IntPtr IHLData_IHLOriginal_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, IntPtr jarg4)
static int CFxAPI_fdt_vportsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeft__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_RecoverFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static bool CFxEntityData_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenu_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxMainFrame_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_getSYSCODEPAGE(HandleRef jarg1)
static bool CFxUI_DisplayContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_desc()
static IntPtr CFxAppInfo_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_fgetenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static double CFxPreferencesDisplay_GetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_rec_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxLicenseInfo_GetLicenseType(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIMenuItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxDocument_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_resbufA()
static IntPtr FDT_GENOUT_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr dlg_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMouseOverActiveViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsFibersEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_IMAGE_hImage_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static double CFxView_screenHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxInputContextReactor_BeginGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string VSTA_CONTEXT_manufacturer_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSelectionSet_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetFileData(HandleRef jarg1)
static void CFxPreferencesSystem_SetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsRightButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_createObject()
static int CFxAPI_fdt_dictionary_addA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void fdt_tablet_recA_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxView_IsPaperSpaceOverall(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxLicenseInfo_GetRoamingLicenseMaxShares(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUITabletMenu_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxView_screenRect__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSettings_GetKeys(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2)
static UInt64 CFxPreferencesPlotSettings_GetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static bool CFxUIItemDefinition_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFO_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxAPI_fdt_angle(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommandContext_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxAPI_GetFXImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_Update(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxVSTA_EditMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_dictionary_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_entnext_dbhook(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static void CFxPreferencesAutocomplete_SetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesPlotSettings_GetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionSet_GetNTHX(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDiscardDuplicatesSettings_SetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_GetUCS2WCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetUseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetImageItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_resbuf_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHostAppServices_isSysVarAllowed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static double CFxDatabase_getDISTANCE(HandleRef jarg1)
static void CFxDatabase_setVSMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxSystemServices_GetVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3, out int jarg4, out int jarg5)
static void VSTA_CONTEXT_manufacturer_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr ClassPtrArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxSelectionSet_GetObjectsByClass(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_DialogNewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUIGroup_GetTempOverrideKeys(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxUIAccelerator_GetKeySequence(HandleRef jarg1)
static global::System.IntPtr P_IMAGE_UrWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageVector(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static global::System.IntPtr new_KeywordPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetImageName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_load_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static void CFxInputContextReactor_BeginGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DocumentToBeDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getSNAPUNIT(HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetViewportId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxCurvePE_getFilletPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIItemDefinition_GetContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_cast(HandleRef jarg1)
static void CFxInputPointManager_EnableOtrackCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPackAndGo_SetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxView_viewportObjectId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_LoadInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSystemFiles_GetConfigFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsGesture(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getSNAPBASE(HandleRef jarg1)
static bool CFxHitTestInfo_IsGesturePinch(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFO_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_DialogNewPositionedA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxSystemServices_SetUserBreak__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_tablet_recW_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static bool CFxPreferencesDisplay_GetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attrW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6)
static int dlg_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxCurvePE_getExtensionPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxAppInfo_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxView_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxAPI_fdt_rett(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_DestroyDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDrafting_SetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_setcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxPreferences_StandardCompliantDwg(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIAcceleratorsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setFILLETRAD3D(HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStringArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr KeywordPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_selectionSetDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputContextReactor_GetInputContextManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetHelpFile(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 void CFxDisplayDevice_RemoveDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxDatabase_setIMAGEFRAME(HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxDocumentManager_GetActiveDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionEnded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIButtonsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr TRACKER_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_slide_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static bool CFxPreferencesDisplay_GetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerPallete_GetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static bool CFxPreferencesPlotSettings_GetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_GetDeviation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_all_toolbars_visibleA(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesSystem_SetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUserIO_GetPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_AngleToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static void CFxPreferencesOutput_SetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIToolbarItem_SetMovable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void delete_CFxUIMenuItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11)
static void fdt_tablet_recA_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 CFxAPI_fdt_tblobjnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, IntPtr jarg4)
static bool CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUserIO_GetPromptDist(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static Int32 dcl_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SIZE_T_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxInputPointManager_GetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginModalState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_resbuf(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_DeleteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabaseReactor_cast(HandleRef jarg1)
static void CFxDatabase_setDWGNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxInputContextReactor_BeginGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxHistoryObjectArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void fdt_tablet_rec_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxView_screenRect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUIMenuItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxRecentFiles_GetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEntityData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUITempOverrideKey_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxTrackerContext_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr FDT_FLX_INFOW_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_DevWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void delete_CFxMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxsaveasA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_CFxFileData(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOpenSave_GetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr P_OLEOBJ_pReserved2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_DrawDDTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxCommand_Help(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxViewDrawInfo_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputPointManager_SkipCurrentInputPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxTrackerContext_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSettings_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4)
static int CFxAPI_dlg_TileSetFontA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
static IntPtr CFxVectorizeDevice_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetTabletMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_GetSSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxDatabase_setSYSCODEPAGE(HandleRef jarg1, int jarg2)
static global::System.IntPtr FDT_FLX_INFOW_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4)
static bool CFxFileData_IsCloudStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIAccelerator_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVSTA_Load(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsFxEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double kMAX_VALID_DEPTH_RANGE_get()
static void CFxVectorizeDevice_SetPalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2)
static void CFxAppInfo_SetAppName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryObjectArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_AddGrVecsVector(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6)
static bool TRACKER_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetOpenDefaultExtension(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_GetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxProfileStorage_DeleteNode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_UseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_LINE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_RemoveUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_CloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxApplications_GetStartupSuite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDimensionPalette_SetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputContextReactor_createObject()
static int CFxUserIO_GetOrient__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
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 double CFxHitTestInfo_GetGesturePinchRollAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CFxVertexData_m_Direction_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr TRACKER_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void GetPaperProperties(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxGeomUtils_GetImageBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void delete_fdt_binaryA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_LlDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxInputPointManager_desc()
static global::System.IntPtr CFxDatabase_getTARGET(HandleRef jarg1)
static int CFxAPI_fdt_flxnamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxVectorizeDevice_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxUI_SetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setSNAPISOPAIR(HandleRef jarg1, Int16 jarg2)
static int CFxUIToolbarItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getDWGTITLED(HandleRef jarg1)
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 CFxUserIO_GetDirection__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxPreferencesEntityMove_SetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxInputContextReactor_queryXSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxPreferencesAutocomplete_GetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static int CFxAPI_dcl_get_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5)
static global::System.IntPtr CFxSystemServices_GetAppDataVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactivedocumentA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionData_GetSpaceId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static void CFxSelectionSetReactor_OnClearEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLicenseManager_ShowMessage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxPreferencesOutput_SetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxAppInfo_Load(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_GetDatabaseHistory(HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxPreferencesUser_GetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListGetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static global::System.IntPtr CFxDatabase_getVSMAX(HandleRef jarg1)
static ushort CFxAPI_fdt_getimagetypeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr new_CFxString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void fdt_VPORT_EXT_INFO_hPalette_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_dictionary_searchW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxPreferencesDisplay_GetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setPERIMETER(HandleRef jarg1, double jarg2)
static bool ClassPtrArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_cast(HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static void CFxPreferencesOutput_SetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_GENOUT_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxPreferencesSystem_SetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_EnablePreviewSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIMenuItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonQuickAccessBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxEdInputTracker_GetWorkingPlaneSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetVisibleRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_xloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static Int32 CFxPreferencesPlotSettings_GetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_binary(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxRibbonContextualState_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGeomUtils_GetPixelToModelTransform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static sbyte CFxDatabase_getDGNFRAME(HandleRef jarg1)
static void delete_CFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetFxCurrentSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetNumPixelsInUnitSquare(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxHistoryStack_Pop(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesCloudCommenting_GetFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIAccelerator_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setDONUTID(HandleRef jarg1, double jarg2)
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 void CFxFileData_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIDockableWindowCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxPreferencesDesignResources_SetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxViewDrawInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetApplicationPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr GetFxSystemServices()
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void ArgonAssertFuncW__SWIG_3([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4)
static void CFxInputContextReactor_BeginGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valA_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_Vcs2PrinterPnt(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, out int jarg4, out int jarg5)
static global::System.IntPtr CFxSystemFiles_GetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_fdt_u_valW(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsKeyboardEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHostAppServices_SetVariablesDefault(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_file_systimeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10)
static bool CFxHitTestInfo_IsMouseEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_50(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxUIGroup_GetRibbonHelpMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static String CFxString_wide_strU(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetManaged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxHistoryItem()
static bool CFxString_equalNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxString_arg__SWIG_35(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3)
static void CFxProfileManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_0 delegate0, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_1 delegate1, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_2 delegate2, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_3 delegate3, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_4 delegate4, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_5 delegate5, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_6 delegate6, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_7 delegate7, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_8 delegate8, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_9 delegate9, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_10 delegate10, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_11 delegate11, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_12 delegate12, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_13 delegate13)
static void CFxViewDrawContext_DrawObject(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void delete_CFxVectorizeDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxProfileManagerReactor_currentProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5)
static int CFxAPI_fdt_tblobjnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxDatabase_setLOGFILENAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FileNameRetValArray__SWIG_0()
static bool CFxInputPointManager_OperationAborted(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint ClassPtrArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIGroup_IsBaseGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetRecentlyErased(HandleRef jarg1)
static int CFxString_findOneOf__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSystemServices_QueueExpr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxSelectionSet_ClearObjectFilters(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_0(HandleRef jarg1, int jarg2)
static void CFxProfileManagerReactor_currentProfileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void fdt_u_valA_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static IntPtr dlg_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxProfileManager_ProfileCopy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_dlg_ImageEnd(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxBagFiler(HandleRef jarg1)
static void CFxDatabase_setHPDRAWORDER(HandleRef jarg1, Int16 jarg2)
static Int32 CFxPreferencesDisplay_GetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static char CFxString_getAtWU(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSelectionData_CFxVertexData_m_Direction_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIWorkspace_GetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_GetAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxSelectionData_IsNestedSelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_sssetfirst(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static bool CFxPreferencesPlotSettings_GetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_GENOUT_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateStarted(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_xdsizeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static void CFxDatabase_setSNAPUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setDIASTAT(HandleRef jarg1, Int16 jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4, int jarg5)
static void delete_CFxUIItemDefinitionCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_0 delegate0, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_1 delegate1, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_2 delegate2, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_3 delegate3, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_4 delegate4, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_5 delegate5, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_6 delegate6, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_7 delegate7, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_8 delegate8, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_9 delegate9, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_10 delegate10, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_11 delegate11, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_12 delegate12, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_13 delegate13, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_14 delegate14)
static global::System.IntPtr CFxDatabase_getPLIMMAX(HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxGeomUtils_GetPolySegment(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDisplayDevice_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_compfontW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxUserIO_SetCurrentPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxView_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static short FDT_GENOUT_LINE_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_removeW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFO_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_getfiledW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxAPI_fdt_setosnapinactive(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_rec_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetUserBreak__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_EndGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void KeywordVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_dimensions_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, out int jarg4, out int jarg5)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUITempOverrideKey_SetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIItemDefinition_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_copyA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, out int jarg5)
static void CFxDatabase_setVIEWMODE(HandleRef jarg1, Int16 jarg2)
static double CFxVectorizeDevice_GetDeviceWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxViewDrawInfo_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4, int jarg5)
static int FlatShotHL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static UInt32 CFxTrackerContext_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_RemoveTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxView_SetPanMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesContextualHelp_GetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDimensionMove_SetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static String CFxCommand_displayName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_MatVcsToWcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_getinputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, uint jarg3)
static global::System.IntPtr new_fdt_tablet_recW()
static global::System.IntPtr CFxString_getAtWW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dcl_resbuf_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxInputContextReactor_EndGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void FDT_FLX_INFO_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void FxCIPRecordAssertion(string jarg1, int jarg2, string jarg3)
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 SIZE_T_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_activate_progress_barW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void fdt_binaryW_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_xunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr CFxHistoryArg_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4)
static bool CFxScriptEngine_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDiscardDuplicatesSettings_SetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static bool CFxPreferencesInputHistory_GetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPlotSettings_GetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableOrthoCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxViewDrawInfo()
static void dcl_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_grreadW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxUIToolbarItem_GetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr GetFxUserIO(HandleRef jarg1)
static global::System.IntPtr CFxOtrackPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreviewBitmap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_dictionary_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void CFxDocumentManagerReactor_DocumentCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_RemoveWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxGeometryClipper_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxScriptEngine_ResumeScript(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufW_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr SIZE_T_VECTOR_Repeat(uint jarg1, int jarg2)
static int CFxProfileStorage_GetStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxDatabase_getVIEWTWIST(HandleRef jarg1)
static bool CFxViewDrawInfo_IsScalingLineweights(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_AddOtrackBasePoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxScriptEngine_PauseScript(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectAppendedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valW_mnInt64_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void CFxAppInfo_GetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static short fdt_tablet_recW_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_slide_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, string jarg6)
static void CFxPreferencesSystem_SetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_fdt_u_valA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static bool CFxCommandContext_IsMultipleActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxKeywordArray_push_back(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDatabase_setDWFFRAME(HandleRef jarg1, sbyte jarg2)
static bool CFxPreferencesOpenSave_GetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getFRONTZ(HandleRef jarg1)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIGroup_GetMouseClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entupd(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr new_dlg_callback_packetW()
static void CFxProfileManagerReactor_profileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUIMenuItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxPreferences_Hatch(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_GetSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOsnapPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_delcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocument_SWIGUpcast(global::System.IntPtr jarg1)
static void TRACKER_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static UInt32 CFxPreferencesDesignResources_GetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ClassPtrArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButton_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_DialogDone(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static void CFxSelectionData_CFxVertexData_m_Description_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxIteratorSelectionData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_writeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static void CFxViewDrawInfo_SetScalePixelSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUITempOverrideKey_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxAPI_fdt_distance(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static void CFxInputContextReactor_BeginEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RedrawEntity__SWIG_1(HandleRef jarg1, int jarg2, int jarg3)
static String CFxDatabase_getCPLOTSTYLE(HandleRef jarg1)
static int CFxAPI_fdt_wmfoutA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7, int jarg8, int jarg9)
static int CFxUserIO_DoSSGet__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxMainFrame_GetCommandHistoryWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getSNAPMODE(HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetNameSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_FILL_POLY()
static global::System.IntPtr CFxAppInfo_GetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxAppInfo_SetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_actcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetString(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool IsAllIgnored()
static void CFxHitTestInfo_SkipKeyboardInput(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static uint CFxCommand_GetHelpId(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int dlg_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLayoutManagerReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxLicenseInfo_DisableDWF(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxTrackerContext_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_IsEager(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_release_grread(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxVectorizeDevice_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_GetModelerManufacture(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_sizeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3)
static void CFxUserIO_SetCurrentPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static bool CFxHistoryObjectArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_replaceA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, char jarg3)
static void CFxUIReactor_OnRibbonControlCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesAutocomplete_SetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void P_IMAGE_UrWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryArg_Cast(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr new_ClassPtrArray__SWIG_0()
static Int16 CFxDatabase_getCMDACTIVE(HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingProductCurrentCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxsave(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesUser_SetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static IntPtr cursordef_cursorpnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxVectorizeDevice_CreateDrawContext(HandleRef jarg1, int jarg2, int jarg3)
static int CFxString_insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr new_KeywordPair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxString_arg__SWIG_33(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5)
static void CFxPreferencesDisplay_SetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_isalnum(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxViewDrawInfo_SetUseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxViewDrawInfo_SetIsDragging(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CLASS_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeft__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr KeywordVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static short cursordef_cursorstyle_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIContext_OnCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_resbufW(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxViewportSnapShot()
static global::System.IntPtr CFxAPI_fdt_registry_descendentsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, short jarg3)
static global::System.IntPtr CFxView_GetRealExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactvport(global::System.Runtime.InteropServices.HandleRef jarg1, out short jarg2, out short jarg3)
static bool CFxUI_LoadResourceFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getLENSLENGTH(HandleRef jarg1)
static double CFxPreferencesMLeaderSettings_GetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_tblnextA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr CFxAPI_fdt_registry_readW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxDatabase_setCVPORT(HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesDrafting_SetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr fdt_u_valW_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPoint3D__SWIG_0([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void TRACKER_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxModule_CFxEventData_m_pDatabase_set(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUnitsFormatter_PointToUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxViewDrawInfo_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static double CFxDatabase_getCIRCLERAD(HandleRef jarg1)
static void CFxInputContextReactor_EndGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxUIMenuItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSelectionSet_MergeOptions_m_RemoveOptions_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryObjectArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IsEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr dcl_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManager_CreateDocumentIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesDisplay_GetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRangeDouble(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsFullVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_activate_progress_barA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesSystem_SetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxCurvePE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_registry_writeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static void CFxPluginModuleInternal_addGUIDs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_2(int jarg1)
static double CFxVectorizeDevice_GetDeviceHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_SetActiveDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_NameToString(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIReactor_OnMenuItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getLOGFILENAME(HandleRef jarg1)
static bool CFxInputPointManager_IsCursorSnapping(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getangleA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesPlotSettings_GetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_UpdatePanelPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSelectionData_CFxVertexData_m_Point_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxUIMenuItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxView_drawableAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxUserIO_GetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3)
static bool CFxView_SetPreviousData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesUser_GetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDimensionPalette_SetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxInputPointManager_createObject()
static global::System.IntPtr CFxUIItemDefinition_GetLightIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_file_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static double CFxViewDrawInfo_GetLineweightToDcScaleOverride(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_DoVerb(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIAcceleratorsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxEditorReactor_queryXSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static IntPtr CFxViewDrawContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsLeftMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxIteratorEntityData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_Create__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PRINT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocumentManager_GetDocumentByIndex(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static bool CFxHitTestInfo_IsLeftButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxString__SWIG_0()
static void FDT_GENOUT_LINE_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr GetCFxPluginModuleInternal()
static int CFxUserIO_GetKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, out short jarg3)
static global::System.IntPtr new_CFxKeywordArray()
static bool CFxUI_CheckEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static void CFxDocumentManagerReactor_DocumentBecameCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButton_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateCanceledSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entnext(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static int CFxUserIO_GetFileName__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static void CFxPreferencesDiscardDuplicatesSettings_SetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_entmod_dbhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_register_funcW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxPicture(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static CFxOsnapPoint.OsnapMode ConvertOsnapMode(Teigha.Core.OsnapMode osnapMode)
static bool CFxViewDrawInfo_UseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_format__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static void CFxLayoutManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_0 delegate0, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_1 delegate1, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_2 delegate2, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_3 delegate3, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_4 delegate4, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_5 delegate5, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_6 delegate6, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_7 delegate7, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_8 delegate8, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_9 delegate9, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_10 delegate10, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_11 delegate11, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_12 delegate12, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_13 delegate13, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_14 delegate14, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_15 delegate15)
static void CFxUIImageItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryObjectArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr P_OLEOBJ_LlObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getWORLDUCS(HandleRef jarg1)
static int CFxAPI_fdt_flxclose(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIDoubleClickActionsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDoubleClickAction_GetDxfClassName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxViewportSnapShot(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncA(bool jarg1, string jarg2, int jarg3, string jarg4, string jarg5)
static int CFxAPI_dlg_SliderGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxSettings_GetType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManager_PushCadResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDockableWindow_GetObjectName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ClassPtrArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxPreviewBitmap(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_u_valW_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDoubleClickAction_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hWnd_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_CFxToolBars_SaveState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxCommand_GetHelpIdSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsSnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_mainFrameDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTracker_m_bAdded_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setVIEWDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIButtonsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_curve_isplanar(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void FileNameRetValArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4)
static int CFxAPI_fdt_palgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_compfontA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxPreferencesPlotSettings_SetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8)
static global::System.IntPtr CFxInputContextReactorExtended_SWIGUpcast(global::System.IntPtr jarg1)
static Int32 dcl_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveBlockId(HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeDeactivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int TRACKER_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FileNameRetValArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_POINT_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxSystemServices_FileDialog__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static global::System.IntPtr CFxUI_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getprofileslistW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static int CFxAPI_dcl_new_positioned_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void FDT_GENOUT_LINE_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesUser_SetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxVectorizeDevice_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDWGTITLED(HandleRef jarg1, bool jarg2)
static void CFxView_LeaveDragMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetPrimaryPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_TileClientDataA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void CFxRangeDouble_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxPreferences_Enterpoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setFRONTZ(HandleRef jarg1, double jarg2)
static short fdt_u_valW_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_initgetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void CFxPreferencesSystem_SetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIDoubleClickAction_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_VPORT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_CheckInLicense(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxBagFiler_SWIGUpcast(global::System.IntPtr jarg1)
static void fdt_u_valW_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_filename_mktempA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, int jarg6)
static void CFxTrackerContext_AllowRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_fdt_binaryA()
static bool CFxTracker_DoActionSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUITempOverrideKey_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxInputContextReactor_BeginNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_PRINTREC()
static void delete_FDT_FLX_INFOW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void FDT_FLX_INFOA_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxSystemServices_FileDialog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static void delete_CFxSelectionSet_MergeResult(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesSystem_SetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static void CFxApplications_GetApplicationsByDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDisplayDevice_SetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_cmdW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr IHLData_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hDc_get(global::System.Runtime.InteropServices.HandleRef jarg1)
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 global::System.IntPtr P_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_PopResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CLASS_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetViewDir(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_registry_readA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static IntPtr CFxDatabase_RecoverFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4, int jarg5)
static void delete_CFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getininameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxPreferencesPlotSettings_SetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static short FDT_GENOUT_AREA_nFlags_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncW__SWIG_1(bool jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5)
static void CFxPreferencesPlotSettings_SetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static String CFxCommand_displayNameSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetVisiblePixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr dlg_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxViewDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_cmdA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr P_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_InitializeFromViewInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_CreateDrawablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, UInt32 jarg3, HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_angtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6)
static void delete_CFxPreferencesInputHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_nentselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr CFxAPI_fdt_loadedA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIGroup_IsRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoSSGet__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static Int32 CFxPreferencesDisplay_GetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IHLData_IHLOriginal(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabaseHistory_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SIZE_T_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3)
static UInt32 CFxEdInputTracker_subSetAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static short P_FILL_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOrthoPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void P_OLEOBJ_UrClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManagerReactor_DocumentActivationModified(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_EndGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesDiscardDuplicatesSettings_GetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void dcl_resbuf_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDesignResources_SetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxDatabase_setDWGPREFIX(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr CFxUnitsFormatter_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVectorizeDevice_InitializeLayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxDatabase_getHPSPACE(HandleRef jarg1)
static bool CFxDocumentIterator_Done(HandleRef jarg1)
static void CFxSelectionSet_MergeOptions_m_pFilter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxHitTestInfo_GetKey(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetEyeVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_1(HandleRef jarg1)
static double CFxViewDrawInfo_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryObjectArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxDatabase_setFRAME(HandleRef jarg1, Int16 jarg2)
static int CFxAPI_fdt_getpointA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxUserIO_DoEntsel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static IntPtr CFxDocumentManagerReactor_desc()
static int CFxAPI_dlg_TileSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxAPI_fdt_grtextW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxVSTA_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static int CFxAPI_fdt_entmod_dbhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreviewBitmap_HasPreview(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 CFxUserIO_GetOrient__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxSystemServices_CFxExpressionParserData_m_bUCS_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_Create__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
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 void CFxUI_DestroyTempOverrideKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesUser_SetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxPreferencesDisplay_GetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_actcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_filename_directoryA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static global::System.IntPtr CFxUserIO_GetPromptString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_poly2catrom_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, double jarg4)
static IntPtr PRINT_EXT_INFO_UppRiCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SkipCurrentInputPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUserIO_Initget__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesUser_GetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesEnterpoint_GetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxBagFiler_createObject()
static int CFxAPI_fdt_curve_getstartparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static bool CFxUIMenuItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_ContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryArg_SWIGUpcast(global::System.IntPtr jarg1)
static void ClassPtrArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxPreferencesSystem_GetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSettings_HasGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPluginModuleInternal_uninitApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setTDINDWG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_FLX_INFO()
static int CFxAPI_dcl_start_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxString_vformatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxGeometryClipper_cast(HandleRef jarg1)
static void CFxInputContextReactor_EndSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxView_AddViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr new_CFxEditorReactor()
static void delete_CFxPreferencesDrafting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setCMDECHO(HandleRef jarg1, Int16 jarg2)
static double CFxPreferencesOutput_GetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_QueueExpr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxPreferences_DiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_UrDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool TRACKER_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_utf8_str(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cleartextscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static void CFxSystemServices_CFxExpressionParserData_m_bUCS_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ImagePreviewBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static bool CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr dcl_u_val_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_FILL_AREA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_SetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxViewDrawInfo_GetVisualStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setAREA(HandleRef jarg1, double jarg2)
static void CFxPreferencesDisplay_SetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_MergeResult_m_Found_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIDockableWindowCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPlotSettings_GetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_GetGeomExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxCommand_Execute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_reverseFindW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesUser_GetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CLASS_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_menucmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxViewDrawInfo_SetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxDatabase_setUSERS5(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxUIWorkspace_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSetReactor_OnObjectRemovedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxInputContextReactor_BeginGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxInputPointManager_IsOtrackPolarCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreviewBitmap_Create()
static int CFxAPI_fdt_setfunhelpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_setconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerListNames(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocument_AttachDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_isA(HandleRef jarg1)
static void CFxPreferencesOutput_SetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnRibbonControlCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 void CFxDisplayDevice_SetSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_getpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IHLData_IHLOriginal_GetSubEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS4(HandleRef jarg1)
static int CFxProfileManager_ProfileDelete(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimRightW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void delete_FileNameRetValArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr new_ClassPtrArray__SWIG_1(HandleRef jarg1)
static void CFxPreferencesDisplay_SetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxInputPointManager_IsDrawTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dcl_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxVectorizeDevice_SetBackground__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_dlg_ListAddA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_resbufA_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxVSTA_GetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionData_GetPointsCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIDoubleClickActionsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDirection__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static global::System.IntPtr CFxString_SplitA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxUI_DestroyRibbonHelpMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_palloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxRangeDouble_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static IntPtr CFxUITempOverrideKey_GetKeySequence(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxEntityData_GetId(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvalW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssadd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4, bool jarg5)
static global::System.IntPtr CFxPreferencesTablet_GetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxVectorizeDevice_GetPixelPerMM(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDockableWindow_SetShow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CLASS_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxCurvePE_getFilletPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr jarg6)
static int CFxHistoryStack_GetStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_sizeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3)
static int CFxAPI_fdt_register_paramW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_hatch(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static global::System.IntPtr CFxPreferencesOpenSave_GetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_unregisterW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void dcl_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDatabase_getTEXTSTYLE(HandleRef jarg1)
static int CFxAPI_dlg_ImageSlideW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static double CFxViewDrawInfo_GetVisiblePixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetFxDocumentSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxSystemServices_FileDialog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void delete_cursordef(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_u_val_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_SWIGUpcast(global::System.IntPtr jarg1)
static void ClassPtrArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxViewDrawInfo_GetTEXTFILL(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IsNotEqual__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIImageItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getSNAPISOPAIR(HandleRef jarg1)
static int CFxLicenseInfo_IsProductKeyValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIImageItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxDatabase_getVIEWDIR(HandleRef jarg1)
static void CFxDatabase_setEXTMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxString_findOneOfA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxString_arg__SWIG_27(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxUIToolbarItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_HeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputContextReactorExtended(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesUser_GetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DEVPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDynamicInputs_SetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxProfileManager_ProfileListNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_GetObjectId(IntPtr jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_poly2bspline(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static double dcl_u_val_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_setselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxHistoryObjectArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOpenSave_SetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_gethandle(global::System.Runtime.InteropServices.HandleRef jarg1, out IntPtr jarg2, out IntPtr jarg3)
static bool CFxPreferencesAutocomplete_GetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_createObject()
static global::System.IntPtr CFxString_trimLeftA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static int CFxAPI_fdt_setfunhelpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static bool CFxDatabase_setTDUUPDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_GetPointFDT__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_fdt_curve_isclosed(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void CFxDocumentManagerReactor_DatabaseAttached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetHostID(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputPointManager_ResetAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, uint jarg3)
static int CFxUserIO_GetInt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxEdInputTracker_GetDrawDecorationSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxOsnapPoint_GetOsnapDistance()
static global::System.IntPtr CFxSystemServices_GetObjectManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblpurgeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_fdt_palopendlg(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_find__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_dcl_get_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static int CFxOsnapPoint_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_CFxVertexData_m_Description_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_endModalState(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSettings_Read(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void KeywordVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_P_OLEOBJ()
static void delete_fdt_resbufA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_GetNameGlobal(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_desc()
static global::System.IntPtr CFxModule_cast(HandleRef jarg1)
static int CFxAPI_fdt_install_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxPreferencesPlotSettings_SetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CLASS_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxProfileManager_removeReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxMainFrame_GetCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getrealW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static void delete_FDT_GENOUT_POINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfile_Flush(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint FileNameRetValArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxView_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
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 global::System.IntPtr CFxMainFrame_GetToolBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimRight__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnapA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxUIGroup_GetTabletCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grclear(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_ListEnd(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxHitTestInfo_IsMouseWheel(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_DEVPOINT()
static void CFxPreferencesPlotSettings_SetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxViewDrawInfo_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
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 bool CFxPreferencesMLeaderSettings_GetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_VPORT_EXT_INFO_VportMin_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxInputPointManager_SetPrimaryPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxDatabase_setGRIDMODE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr CLASS_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string FDT_FLX_INFOA_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetMouseCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOtrackPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)
static global::System.IntPtr new_CFxTracker()
static void CFxModule_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxModule.SwigDelegateCFxModule_0 delegate0, CFxModule.SwigDelegateCFxModule_1 delegate1, CFxModule.SwigDelegateCFxModule_2 delegate2, CFxModule.SwigDelegateCFxModule_3 delegate3, CFxModule.SwigDelegateCFxModule_4 delegate4, CFxModule.SwigDelegateCFxModule_5 delegate5, CFxModule.SwigDelegateCFxModule_6 delegate6, CFxModule.SwigDelegateCFxModule_7 delegate7, CFxModule.SwigDelegateCFxModule_8 delegate8)
static global::System.IntPtr CFxDocumentManagerReactor_SWIGUpcast(global::System.IntPtr jarg1)
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 global::System.IntPtr CFxSystemServices_GetFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_palunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxProfileManager_ProfileSave(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool ClassPtrArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_TileGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static void CFxPreferencesUser_SetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr new_CFxDeviceReactor()
static void CFxPreferencesMatrixToolbar_SetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDwgStandards_SetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxView_PointToView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewDrawInfo_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr dcl_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_promptA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxString_format__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxInputPointManager_GetSelectionSetCopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dcl_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxSystemServices_GetFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_dcl_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_OLEOBJ_UrObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocument_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectLast(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTrackerContext_DrawDrawable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxEdInputTracker_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_POINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_SaveFile__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxIteratorSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static SWIGWStringHelper swigWStringHelper
static bool CFxCommandContext_IsQuiescent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fxToolBars()
static int CFxAPI_fdt_flxropenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxUserIO_GetCorner__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_GetADSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxString_trimRightA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dcl_mode_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4)
static bool CFxHitTestInfo_IsMiddleButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxModule_CFxEventData_m_DefunCode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_setcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxRangeInt_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS1(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 jarg2)
static global::System.IntPtr CreateSelectionSet(HandleRef jarg1)
static global::System.IntPtr CFxDocumentIterator_Document(HandleRef jarg1)
static short fdt_u_valA_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxViewDrawInfo_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEdInputTracker_subWorldDraw(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static double CFxDatabase_getCDATE(HandleRef jarg1)
static void CLASS_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_wmfoutW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7, int jarg8, int jarg9)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CLASS_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeftW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static UInt32 CFxPreferencesDisplay_GetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static string VSTA_CONTEXT_hostID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEvalModeHandler_UndoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxProfile_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxUI_RemoveItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getsnapmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out short jarg3)
static uint CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_removeall(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdti_ssinc(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIButton_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_DoNentsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9)
static bool CFxUIToolbarItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getFRAME(HandleRef jarg1)
static int CFxAPI_fdt_getstringA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3, string jarg4, uint jarg5)
static void UseCustomAssert(bool jarg1)
static IntPtr CFxDocumentIterator_createObject()
static global::System.IntPtr new_CFxStringArray__SWIG_0()
static void CFxEditorReactor_gripEditCustomOp(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4)
static void CFxUIImageItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemFiles_SetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4, ushort jarg5)
static global::System.IntPtr CFxSystemServices_GetFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_screenWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_TileDimensionsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, out short jarg4, out short jarg5)
static IntPtr CFxInputContextReactor_isASwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSelectionSet_GetCommonBasePEClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxUIGroup_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static uint CFxView_numDrawables(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEntityData_GetClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_GetLastViewportEntId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesHeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_GetClosestPointInFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_getdistA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static int CFxAPI_fdt_entmakexW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3)
static IntPtr CFxModule_CFxEventData_m_pDatabase_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvoid(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findA__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr new_CFxString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakexA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3)
static global::System.IntPtr CFxSystemFiles_GetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxFileData_SetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dlg_callback_packetW_key_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPackAndGo_SetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_AutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static int CFxView_PointToView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManager_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CLASS_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_GetPrintExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_draggenA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static IntPtr CFxInputContextReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int dlg_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLicenseInfo_GetLicensePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_desc()
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 double IMAGE_PNT_3D_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetUseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesSystem_GetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_GetBlockedPurge(HandleRef jarg1)
static global::System.IntPtr CLASS_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesDimensionPalette_GetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_getargsA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxCurvePE_desc()
static int CFxAPI_fdt_grtextA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxAppInfo_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_done_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_redraw(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static bool CFxLicenseInfo_IsDWFSaveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsNetworkConnectionLost(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4, int jarg5)
static void CFxPreferencesDesignResources_SetProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSetReactor_OnClearStartedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxDocument_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectAppended(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr GetFxScriptEngine()
static void FDT_FLX_INFO_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesSystem_GetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIImageItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 jarg2)
static int CFxGripPointsPE_getOsnapPoints(HandleRef jarg1, int jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxPreferencesOutput_SetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxGripPointsPE_getObjectCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_getLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_newrbW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string FDT_FLX_INFOA_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxView_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_RecoverFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_dictionary_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxString_getAllocLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cvunitW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, out double jarg5)
static int CFxAPI_fdt_file_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxVectorizeDevice_UsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginSaveEx(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static string fdt_tablet_rec_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDwgStandards_GetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_BeginGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxGripPointsPE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetBindType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxAPI_dcl_set_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_ssmemb(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSystemFiles_SetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_FLX_INFO_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesTablet_SetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxPreferencesDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_cast(HandleRef jarg1)
static global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxPreferencesOutput_GetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_SetActiveDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxProfileManagerReactor_currentProfileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint KeywordVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_cancelDwgOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getsnapmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out short jarg3)
static void dlg_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_palshowA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxViewDrawInfo_SetInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_removeDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxPreferencesDisplay_GetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static global::System.IntPtr CFxUIToolbarItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentIterator_Start(HandleRef jarg1)
static bool CFxDatabase_setUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxPreferencesOutput_GetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxVectorizeDevice_DestroyLayout(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMatrixToolbar_SetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxCurvePE_createObject()
static void CFxPreferencesTablet_SetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_GetGsView(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsGesturePan(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateCanceled(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CLASS_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxMainFrame_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowMatrixToolbarWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHistoryObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_usrbrk(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_init_dragmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ClassPtrArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static Int32 CFxPreferencesUser_GetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IMAGE_PNT_3D_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSystemServices_WriteLine__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxProfileManagerReactor_profileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDocumentIterator_getRealClassName(IntPtr jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectForHatch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesUser_SetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_TileModeW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string dcl_binary_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_binaryA_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxCurvePE_getFilletPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static int CFxAPI_fdt_bspline2poly(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesMatrixToolbar_GetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxHistoryStack()
static uint CFxSelectionSet_MergeResult_m_Duplicated_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIGroup_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxRangeDouble()
static bool CFxHitTestInfo_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_DialogTerm(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxDatabase_SetFileData(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputPointManager_AddInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIWorkspace_SetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxAPI_fdt_malloc(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetFileName__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15)
static int CFxUserIO_GetPoint__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_tblmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_FILL_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxPreferencesOpenSave_GetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_ListSetTabStopsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static bool CFxPreferencesAutocomplete_GetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getIMAGEFRAME(HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_cursordef()
static global::System.IntPtr CFxSystemFiles_GetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14)
static void delete_CFxSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdti_notify_short(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr new_CFxProfileManagerReactor()
static uint CFxSelectionSet_MergeResult_m_Removed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDatabaseReactor(HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_nentselpexW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9)
static int CFxAPI_fdt_rtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6)
static global::System.IntPtr CFxPreferences_DynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_resbufA_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxHitTestInfo_IsMiddleButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetCorner__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static uint CFxUITempOverrideKeysCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxStringArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUITabletMenusCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorSelectionData_step(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr new_fdt_tablet_recA()
static UInt32 CFxPreferencesDisplay_GetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_purgeselecthooklist(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_u_valA()
static void CFxPreferencesMLeaderSettings_SetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_catrom2poly_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_putsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_new_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_CreateUniqueID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_ActivateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static short PRINT_EXT_INFO_DevHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDocumentManagerReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getprinterpapersizesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesOpenSave_GetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAppInfo_GetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbar_existsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_0()
static void CFxUIContext_OnUpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_AddOleDataToClipboard(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static string fdt_binaryA_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoNentsel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static Int32 CFxPreferencesUser_GetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_GetWorkingPlaneSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxPreferencesPlotSettings_SetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesDisplay_SetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_dcl_callback_packetW()
static int CFxUserIO_DoSSGet__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static double CFxViewDrawInfo_GetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactivedocumentW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetID(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_IsWholeEntitySelected(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_GetNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retstrW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxPreferencesTablet_SetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxModule_CFxEventData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDisplayDevice_GetDisplayContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_file_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxInputPointManager_GetWorkPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getprinterlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDisplayDevice_InvalidateAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesHatch(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableOtrackPolarCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesSystem_GetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_IMAGE_LlWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxGeometryClipper_isA(HandleRef jarg1)
static global::System.IntPtr new_WORLDPOINT()
static global::System.IntPtr CFxSystemServices_GetVSTA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsLocked(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxPreferencesOpenSave_GetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_zoomext(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static global::System.IntPtr CFxDocument_createObject()
static void CFxDatabase_setDBMOD(HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesMLeaderSettings_SetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr FileNameRetValArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SIZE_T_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3)
static void CFxDatabase_setUCSVP(HandleRef jarg1, bool jarg2)
static void CFxPreferencesTablet_SetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr KeywordVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxVectorizeDevice_GetPlotArea__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxTracker_GetNameSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static void CFxUIReactor_OnInterfaceAboutToReloadSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDisplayDevice_IsSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDocument_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3)
static int CFxAPI_fdt_translateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5)
static int CFxString_findA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxString_replaceW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr dcl_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesSystem_SetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesUser_SetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CLASS_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIImageItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FileNameRetValArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxUIWorkspace_SetRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxDatabaseReactor_queryX(HandleRef jarg1, HandleRef jarg2)
static void CFxPreferencesTablet_SetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsCtrlPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getVIEWCTR(HandleRef jarg1)
static void CFxEditorReactor_closeAbortedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxPreferences_InputHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetLastOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxHitTestInfo_IsLeftButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIAccelerator_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIItemDefinition_SetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxUI_AddWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static short fdt_tablet_recA_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxViewDrawInfo_SetInitialActiveAreaByViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxPreferencesSystem_GetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutocomplete_SetAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_setselecthookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static int CFxAPI_dlg_ListGetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, string jarg3, int jarg4)
static void KeywordVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void cursordef_cursorpnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxPreferencesDisplay_GetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static global::System.IntPtr CFxApplications_FormatsFilterString(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetGestureState(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateGeometryClipper(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxLicenseManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxStringArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawContext_ClearBackground(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxPreferences_OLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetActivePrompt(global::System.Runtime.InteropServices.HandleRef jarg1)
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 void dcl_u_val_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_GetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreviewBitmap_Read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_Merge__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_get_list_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5, int jarg6)
static void CFxDatabase_setTARGET(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMiddleButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4, short jarg5)
static global::System.IntPtr CFxString_trimRightA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static int CFxAPI_GetResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUITabletMenu_GetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetWheelDelta(global::System.Runtime.InteropServices.HandleRef jarg1)
static void VSTA_CONTEXT_appName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxSystemFiles_GetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxSelectionSet_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr dlg_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewportSnapShot_ApplyToView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2)
static bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static global::System.IntPtr new_IMAGE_PNT_3D()
static uint CFxUIImageItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetActiveLocalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setUSERS1(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSelectionSet_MergeResult_m_Groups_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxDatabase_setBINDTYPE(HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_Output(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_dictionary_addW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_isspace(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_fdt_tablet_rec()
static String CFxDatabase_getINSNAME(HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void CFxPreferencesTablet_SetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_alertW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr ClassPtrArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUI_UpdateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_rtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static int CFxAPI_fdt_retname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxPreferencesMLeaderSettings_GetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getFILLETRAD3D(HandleRef jarg1)
static void CFxDatabase_setHPSPACE(HandleRef jarg1, double jarg2)
static void delete_CFxPreferencesAdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxOsnapPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double IMAGE_PNT_3D_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_xloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void VSTA_CONTEXT_userFolder_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxOsnapPoint_GetCenterSize()
static void CFxView_StartTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectAll(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFO_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssadd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4)
static int CFxCurvePE_getArea(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, out double jarg3)
static global::System.IntPtr CFxInputPointManager_GetCursorClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_DEVPOINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_dcl_new_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxPreferencesSelection_SetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUIToolbarItem_IsExpanded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblsetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxUserIO_GetUserInput__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxView_ViewExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_filename_mktempW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6)
static int CFxAPI_fdt_curve_getparamatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, out double jarg4)
static void CFxSettings_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool IsCustomAssertUsed()
static bool CFxHitTestInfo_IsLeftButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxAppInfo_IsManaged(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxCommandContext_SetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setDISTANCE(HandleRef jarg1, double jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_filename_extensionW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static UInt32 CFxPreferencesDisplay_GetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxLicenseInfo_IsDWFEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVectorizeDevice_Update(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, bool jarg4)
static int CFxAPI_GetResBufFDTW(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5)
static void CFxDocumentManagerReactor_DocumentCreatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_isgraph(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesOutput(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillChangeSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_ismousehook(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loaded_appsA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_replaceA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxSystemServices_ExitApplication__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setLSPALOAD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static UInt16 CFxPreferencesPackAndGo_GetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_filename_baseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static UInt32 CFxEdInputTracker_subSetAttributesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void ClassPtrArray_resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactor_BeginDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxInputContextReactor()
static void CFxDatabase_setLASTANGLE(HandleRef jarg1, double jarg2)
static global::System.IntPtr new_CFxUIStyle()
static int CFxString_compareNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static bool CFxPreferencesEnterpoint_GetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setELEVATION(HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxHistoryObjectArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, bool jarg4)
static bool CFxString_equalNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOA_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreviewBitmap_GetBitmapAndPalette(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxAPI_fdt_AddUserImage(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, IntPtr jarg6)
static bool CFxSelectionSet_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetFilename(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxTrackerContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOsnapPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManagerReactor_isASwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static UInt16 CFxPreferencesPackAndGo_GetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void KeywordVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_SaveInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHistoryStack_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxString_EncodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputContextReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxUI_DestroyAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_right(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_dlg_TileClientDataW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxInputContextReactor_EndEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static string VSTA_CONTEXT_templates_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_DefaultFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_textboxA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxDatabaseHistory_Get(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_atofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static int CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxPreferencesTablet_GetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_draggenW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static int CFxSystemServices_GetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getSNAPSTYL(HandleRef jarg1)
static bool CFxViewDrawInfo_IsPerspective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_ImageFill(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static void CFxTrackerContext_DrawDrawable__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3)
static void CFxPreferencesOLEEditor_SetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxLicenseInfo_CheckOutLicense(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_KeywordPair__SWIG_0()
static void CFxUIAccelerator_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDwgStandards(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsUpdateTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CLASS_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxMainFrame_CFxCommandWindowInfo_visibleMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDeviceReactor_UpdateFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOsnapPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_OnToolbarItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxCurvePE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_namedobjdict(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxCurvePE__getGeneralCurve(HandleRef jarg1, ref IntPtr jarg2, bool jarg3)
static int CFxUnitsFormatter_StringToAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxCurvePE_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxEdInputTracker_removeDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static IntPtr CFxDatabase_LoadFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_getEyeToWorldTransform(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxUIMenuItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssgetfirstA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_get_list_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, int jarg6)
static int CFxAPI_fdt_delcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr CFxView_desc()
static void KeywordVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxDatabase_setUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string CFxGeometryClipper_getRealClassName(IntPtr jarg1)
static global::System.IntPtr CFxUIDockableWindow_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getclosestpointtoprojection(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static void CFxSystemServices_AuthoriseOEMModule(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_entselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxDatabase_setPUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxInputPointManager_IsOtrackCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesSystem(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_dlg_ImagePreviewBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static int CFxAPI_dlg_ListAddW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr CFxInputPointManager_GetCursorPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_add_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_toolbar_existsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, bool jarg3)
static bool CFxUITabletMenu_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesUser_GetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxMainFrame_CFxToolBars_IsVisible(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxOsnapPoint_ConvertOsnapMode(int jarg1)
static void CFxViewDrawInfo_InitializeOutputSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3)
static void CFxPreferencesAutocomplete_SetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStatusBar_RefreshCoords__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static bool CFxVectorizeDevice_IsRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxBagFiler_cast(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxSystemFiles_GetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_BlockPurge(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static int DEVPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_KeywordVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryStack_Push(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTracker_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxCommand_OpenHelp()
static int CFxAPI_dcl_dimensions_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5)
static int CFxAPI_fdt_getrealA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out double jarg3)
static void CFxPreferencesDisplay_SetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDatabase_getElapsedTime(HandleRef jarg1)
static int CFxAPI_dlg_TileModeA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
static bool CFxPreferencesOutput_GetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getHPSCALE(HandleRef jarg1)
static int CFxString_findW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByCrossingWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double fdt_u_valW_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcornerA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxAPI_fdt_drxloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxUIWorkspace_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesHatch_SetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static void CFxViewReactor_OnWorldToEyeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_register_paramA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void fdt_u_valA_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxInputContextReactor_EndGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getAREA(HandleRef jarg1)
static void CFxPreferencesDisplay_SetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxCommandContext_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void delete_CFxPreferencesMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint ClassPtrArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinitionCollection_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_grtextA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static bool CFxDatabase_setUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFOA_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxKeywordArray_sortit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxSelectionSet_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogLoadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxAPI_fdt_ssdel_all(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesTablet_GetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLayoutManagerReactor_layoutToBeDeactivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr fdt_tablet_recW_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnap_mode(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void delete_CFxPreferencesOpenSave(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_client_data_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_getflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxUserIO_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_sslength(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void CFxProfileManagerReactor_currentProfileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUserIO_GetActiveGlobalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxModule_desc()
static void fdt_VPORT_EXT_INFO_MatWcsToVcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_OnItemDefinitionCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogNewPositionedW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxModule_CFxEventData_m_DefunCode_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxStringArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_push_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryArg_Create(HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_GetMatrixFDT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_delmousehook(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryArg_SetData(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxInputContextReactor_EndGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxAPI_fdt_wcmatchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void delete_CFxVSTA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_queryXSwigExplicitCFxDatabaseReactor(HandleRef jarg1, HandleRef jarg2)
static int CFxProfileManager_ProfileRename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesOpenSave_GetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_1(HandleRef jarg1)
static bool CFxInputPointManager_IsOrthoCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxStringArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_compareNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_visibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxViewDrawInfo_GetDebugMode(global::System.Runtime.InteropServices.HandleRef jarg1)
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 double WORLDPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIImageItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static Int16 CFxDatabase_getDBMOD(HandleRef jarg1)
static int CFxHitTestInfo_SystemCursorDisableCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setERRNO(HandleRef jarg1, Int16 jarg2)
static int CFxAPI_fdt_pcontour(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, IntPtr jarg5)
static void ClassPtrArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutoSplitDimensions_SetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxHostAppServices_getRawName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxopenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static uint CFxHistoryObjectArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetPreviousViewSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DatabaseDetachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDist__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void delete_CFxPreferencesSelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static short PRINTREC_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxSelectionData_CFxVertexData()
static void CFxDatabase_setCMDNAMES(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxEditorReactor_cancelDwgOpenSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_SetInitialDirPath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIButton_GetButtonNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEdInputTracker_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxGeometryClipper_createObject()
static void delete_CLASS_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLicenseInfo_DisableLisp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxString_find__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxDatabase_getPLIMMIN(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_GetMovable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_directory_filesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getSNAPANG(HandleRef jarg1)
static void CFxOtrackPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_PointFromUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUIGroup_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_reverseFindW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxPreferencesSystem_SetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_LoadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesUser_GetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_getUCSXDIR(HandleRef jarg1)
static void CFxPreferencesTablet_SetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOutput_GetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_mid__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxEdInputTracker_setValueFinalSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSelectionSetReactor_queryXSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxAPI_fdt_failW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxPreferencesDesignResources_GetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHPSCALE(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_flxsaveasW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_ssdbnr(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static string CFxBagFiler_getRealClassName(IntPtr jarg1)
static bool CFxPreferencesDisplay_GetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxLayoutManagerReactor_queryX(HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_drxunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr new_VSTA_CONTEXT()
static void CFxPreferencesOpenSave_SetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CLASS_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IMAGE_PNT_3D_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_init_dragmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemFiles_SetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentIterator_Seek(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDouble__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxPreferencesDisplay_GetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINTREC_Type_set(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void delete_CFxIteratorEntityData(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_Duplicated_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxPreferences_Selection(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUI_LoadResourceFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetZoomScale(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxModule_createObject()
static uint CFxUIButtonsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFO_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemFiles_GetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_InitializeFromFxView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_GetResBufDDW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3)
static global::System.IntPtr new_P_FILL_AREA()
static int CFxAPI_fdt_getintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static global::System.IntPtr CFxApplications_CreateAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_DesignResources(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_GetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static void VSTA_CONTEXT_hostID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxView_visibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getbackgroundcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxPreferencesPlotSettings_GetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getDATE(HandleRef jarg1)
static void dlg_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static uint CFxEntityData_GetDrawOrder(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesSystem_GetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr P_OLEOBJ_UrClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxOsnapPoint_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
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 CFxAPI_dlg_ImageWmfA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static void CFxPreferencesCloudCommenting_SetFilter(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_flxrnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static bool CFxSelectionSet_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawContext_BeginUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUserIO_IsPending(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_SetCleanScreenState(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2)
static global::System.IntPtr CFxSelectionSet_Merge__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxView_getEyeToScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxDatabase_setSNAPSTYL(HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_DeleteUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxView_GetFxVectorizeDevice__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static short PRINT_EXT_INFO_DevWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxSelectionSet_MergeOptions_m_RemoveOptions_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIReactor_OnItemDefinitionCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetLicenseHostId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryCommand_AddArg(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByView(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxOtrackPoint_GetOtrackLinesCrossColor(bool jarg1)
static global::System.IntPtr new_CFxRangeInt()
static void CFxPreferencesPackAndGo_SetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxAPI_fdt_snvalidA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static bool CFxUI_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_ResetTime(HandleRef jarg1)
static bool CFxViewDrawInfo_GetXCLIPFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getDONUTOD(HandleRef jarg1)
static bool CFxDatabase_getGRIDMODE(HandleRef jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hPalette_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxPreferencesPlotSettings_GetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsNewFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ClassPtrArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesAutocomplete_SetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_getpointW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxCommand_undefineSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxTrackerContext_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxUserIO_GetNoteEditor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxHistoryObjectArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxPreferencesDisplay_SetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_tabletinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetCommandWindowHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_u_valA_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_initdialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_setselecthookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_transW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static global::System.IntPtr CFxUIWorkspace_GetDockableWindows(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_OLEOBJ_pReserved1_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesOutput_GetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_GENOUT_POINT()
static bool CFxPreferencesSystem_GetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_client_data_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxInputContextReactor_BeginGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setPDFFRAME(HandleRef jarg1, Int16 jarg2)
static int CFxCurvePE_getExtensionPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxSelectionSetReactor_desc()
static void CFxUI_DestroyRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxUITempOverrideKeysCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeftW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_Tablet(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static global::System.IntPtr CFxProfile_GetStorage(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIAccelerator_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_GENOUT_AREA_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxViewDrawInfo_SetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUI_RemoveUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_OrientToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static void CFxInputPointManager_SetOsnapPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxDatabase_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxAPI_fdt_curve_getpointatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxUIToolbarItem_SetExpanded(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUITempOverrideKey_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxUIAcceleratorsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_uninstall_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOutput_GetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_PushResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_StopATFBomb(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIAccelerator_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_relrbW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDocument_IsValid(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxCommand_execute(HandleRef jarg1, HandleRef jarg2)
static void CFxSystemFiles_SetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_RemoveOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxCurvePE_getExtensionPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr jarg6)
static Int32 CFxPreferencesDisplay_GetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FXAPI()
static int CFxUnitsFormatter_StringToName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxCurvePE__getExtensionPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static bool CFxApplications_UnloadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void KeywordPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_binaryW_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesDisplay_SetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxUIDockableWindow_GetShow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxViewDrawInfo_SetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesSystem_GetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setPERSPECTIVE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_fdt_u_valW()
static void CFxInputPointManager_EnableOsnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_2(int jarg1)
static global::System.IntPtr CFxInputPointManager_WorldToWorkingPlaneMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxModule_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUI_Menucmd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxPreferencesDiscardDuplicatesSettings_GetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_GetDocumentWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attrA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, string jarg5, int jarg6)
static global::System.IntPtr CFxUI_GetStartUpWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getorientW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static void CFxAPI_fdt_polar(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, double jarg3, double jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5)
static int CFxProfileManager_ProfileImport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static global::System.IntPtr CFxSystemFiles_GetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setUSERS3(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static int CFxUserIO_GetPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxString_findW__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static void delete_CFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDimensionMove_GetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getkwordA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, uint jarg4)
static void CFxUI_AddUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesAdvancedAttEdit_SetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr fdt_VPORT_EXT_INFO_MatVcsToWcs_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIDockableWindowCollection_UpdateCurrentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_Groups_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getHPANG(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetUserDataPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOW_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDisplayDevice_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_DimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getprinterpapersizesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxDocument_GetOverallWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_AddDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_purgedbmodhooklist(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getGRIDUNIT(HandleRef jarg1)
static void CFxAPI_ConvertToW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSelectionSet_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetCorner__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_xdsizeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static global::System.IntPtr CFxUIItemDefinitionCollection_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_OpenSave(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetFxEventType(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageWmfW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static void CFxAPI_fdt_strfreeA(global::System.Runtime.InteropServices.HandleRef jarg1, string 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 void CFxSystemFiles_SetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEditorReactor_windowStateChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxAPI_fdt_getargsW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr P_IMAGE_hImage_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewCreatedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_invokeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesSystem_GetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxMainFrame_GetStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxString_DecodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_appinters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxViewportSnapShot_IsViewExtentsValid(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvalA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxSelectionSet_SubentGetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3)
static Int16 CFxDatabase_getPDFFRAME(HandleRef jarg1)
static int CFxUIToolbarItem_GetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_viewDir(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isxdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonSystemMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string VSTA_CONTEXT_appName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_atofA(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static void delete_CFxOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_multiArg(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_0 delegate0, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_1 delegate1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_2 delegate2, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_3 delegate3, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_4 delegate4, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_5 delegate5, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_6 delegate6, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_7 delegate7, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_8 delegate8, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_9 delegate9, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_10 delegate10, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_11 delegate11, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_12 delegate12, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_13 delegate13, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_14 delegate14, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_15 delegate15, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_16 delegate16, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_17 delegate17, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_18 delegate18, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_19 delegate19, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_20 delegate20, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_21 delegate21, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_22 delegate22, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_23 delegate23, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_24 delegate24, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_25 delegate25, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_26 delegate26, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_27 delegate27, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_28 delegate28, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_29 delegate29, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_30 delegate30, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_31 delegate31, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_32 delegate32, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_33 delegate33, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_34 delegate34, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_35 delegate35, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_36 delegate36, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_37 delegate37)
static global::System.IntPtr new_CFxString__SWIG_5([MarshalAs(UnmanagedType.LPWStr)]String jarg1)
static int CFxAPI_fdt_retreal(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_entdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void dlg_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxLicenseInfo_IsActivationCodeValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static SWIGStringHelper swigStringHelper
static void CFxVectorizeDevice_InvalidateGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxView_focalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_SaveFile__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxLicenseInfo_GetGde(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compareA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_removeA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxUIAccelerator_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsSpacePressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManager_ProfileRegistryKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxUI_RemoveUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetCorner__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static bool CFxUIImageItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHitTestInfo_GetMousePosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_VPORT_EXT_INFO_VportMax_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPluginModuleInternal(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_rec_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_26(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3)
static void CFxMainFrame_ClearCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesLayerStateManager_SetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxProfileStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_IntToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_unregisterA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxMainFrame_CFxCommandWindowInfo_visibleSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setdbmodhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static void TRACKER_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxEditorReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxSystemServices_AddOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentIterator_Step(HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_hide_progress_bar(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxAPI_fdt_strmallocA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void FDT_FLX_INFOW_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxStringArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_palhideW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDatabase_setHPDOUBLE(HandleRef jarg1, Int16 jarg2)
static int CFxUserIO_GetDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static int CFxAPI_fdt_graphscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDisplayDevice_GetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, CFxView jarg2)
static void KeywordVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxViewDrawContext_EndUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTrackerContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_24(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxSystemServices_DisableUI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static void CFxUIItemDefinition_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule()
static String CFxDatabase_getHPNAME(HandleRef jarg1)
static void CFxStatusBar_MeterProgress(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxString_makeLower(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cvunitA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, string jarg3, string jarg4, out double jarg5)
static int CFxOtrackPoint_GetOtrackType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_GetUserIO__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVectorizeDevice_GetPlotArea__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxPreferencesHatch_GetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssnamexW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4)
static global::System.IntPtr CFxInputPointManager_GetPrimaryPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_genout_enamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonSystemMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getERRNO(HandleRef jarg1)
static int CFxAPI_fdt_exit_dragmode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxView_IsOverall(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesDynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileChangedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseManager_IsProductActivated__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxPreferencesDisplay_SetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void P_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetStartUpGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemFiles_SetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_addimage2libW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, ushort jarg5)
static int CFxPreferencesCloudStorage_GetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static int CFxAPI_fdt_entlast(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoSSGet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static ushort CFxAPI_fdt_getimagetypeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void FileNameRetValArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delimagefromlibW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxInputContextReactor_BeginGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_curve_getarea(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static global::System.IntPtr CFxUIGroup_GetMouseShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxCommandContext_GetInitdia(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButtonsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_AllowsDongleActivation(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SetIgnoreAll(bool jarg1)
static bool CFxViewDrawInfo_GetQTEXTMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getorientA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static bool CFxHitTestInfo_IsContinuousEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compare__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxEdInputTracker()
static int CFxAPI_fdt_all_toolbars_visibleW(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getDIASTAT(HandleRef jarg1)
static bool CFxGeomUtils_GetSegmentAtPoint(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out bool jarg5, out bool jarg6)
static void CFxPluginModuleInternal_addGUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxHitTestInfo_DisableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetActiveCommandName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxModule_isASwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxEdInputTracker_addDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_dlg_DialogNewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr new_CFxCommand()
static void CFxAppInfo_SetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_EnableGripsCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_resbufW_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static IntPtr CFxLayoutManagerReactor_queryXSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_tblsearchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static global::System.IntPtr CFxUIGroup_GetMouseButtons(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreviewBitmap_DrawToHDC(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static global::System.IntPtr new_CFxUIReactor()
static void CFxViewDrawInfo_InitializePalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2)
static int CFxAPI_fdt_getconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, uint jarg6)
static bool CFxUIDoubleClickAction_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxLicenseInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmod_type(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_dictionary_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static bool CFxPreferencesLayerPallete_GetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_tablet_recA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxGeometryClipper_SetClipBoundary__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_left(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUI_GetVisibleRibbonHelpMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_recA_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char jarg3)
static void CFxProfile_LoadAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_OnMainSelectionSetChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxStringArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxDocument_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxStringArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetGesturePanOffset(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDGNFRAME(HandleRef jarg1, sbyte jarg2)
static void delete_OdStaticRxObject_OdDbSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxStringArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdti_notify(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxString_insertA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void CFxSelectionSet_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_nentselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool CFxUIToolbarItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesAutocomplete_GetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_ReadDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getinputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, uint jarg3)
static void CFxProfileManagerReactor_profileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dcl_vector_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static IntPtr CFxModule_queryXSwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static short FDT_GENOUT_LINE_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static uint CFxSelectionSet_GetTotalSubents(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOrthoPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesDisplay_SetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxPreferencesEnterpoint_SetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGetFixed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr CFxUITabletMenusCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemFiles_GetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHPNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSelectionSetReactor_OnObjectModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxRecentFiles_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryStack_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxHistoryStack.SwigDelegateCFxHistoryStack_0 delegate0, CFxHistoryStack.SwigDelegateCFxHistoryStack_1 delegate1, CFxHistoryStack.SwigDelegateCFxHistoryStack_2 delegate2, CFxHistoryStack.SwigDelegateCFxHistoryStack_3 delegate3, CFxHistoryStack.SwigDelegateCFxHistoryStack_4 delegate4)
static uint FileNameRetValArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListSetColumnWidthA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static bool CFxPreferencesSystem_GetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_systimeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10)
static global::System.IntPtr CFxAPI_fdt_registry_descendentsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, short jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static short FDT_GENOUT_POINT_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxKeywordArray_local__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr CFxInputPointManager_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_grreadW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxPreferencesSystem_SetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesAutocomplete_GetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetFxDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxView_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesAutocomplete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetRealExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr new_fdt_binaryW()
static bool CFxPreferencesOutput_GetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getininameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxDocumentManager_CloseDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static global::System.IntPtr CFxUIDockableWindowCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxUIToolbarItem_SetInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_setconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxEntityData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setCTAB(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getstringW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5)
static int CFxAPI_fdt_setvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_vformat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxSelectionSet_IsHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_SetHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnItemDefinitionAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUIDockableWindow_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIToolbarItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_RemoveInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_rec_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxInputPointManager_GetHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palshowW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_0()
static void TRACKER_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorEntityData_step(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxModule_event___SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tblrenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxAPI_fdt_ssdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static global::System.IntPtr KeywordPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsInsideCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_AdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getendpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static void CFxEdInputTracker_EnablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesSystem_SetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getLOGINNAME(HandleRef jarg1)
static void CFxViewDrawContext_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxInputContextReactor_BeginGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_add_listA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVSTA_ExecuteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef 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 CFxAPI_fdt_directory_filesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxHitTestInfo_GetGesturePinchScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_from_utf8_str__SWIG_0(string jarg1)
static void FDT_FLX_INFOA_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_tablet_recA_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxLicenseInfo_IsTrialExpired(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPointFDT__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int fdt_VPORT_EXT_INFO_WinHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxModule_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesDisplay_GetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectModifiedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssnamexA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4)
static int CFxAPI_dcl_get_attr_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5)
static void delete_CFxPreferencesLayerStateManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowTextWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxHostAppServices_LoadVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxAppInfo_GetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static string FDT_FLX_INFO_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxMainFrame_GetInput(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxDocument_GetFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxAppInfo_desc()
static global::System.IntPtr CFxUIAccelerator_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_SetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_AllowHardwareTransformations(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxViewDrawInfo_InitializeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void VSTA_CONTEXT_desktop_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxCommandContext_IsScriptActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPANG(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_tblrenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static bool CFxView_IsPreviousVectorizationAborted(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_28(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4, ushort jarg5)
static global::System.IntPtr CFxUI_GetVisibleRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetDocumentByFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxDatabase_setPUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setviewW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxUI_ResetEvents(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOpenSave_GetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int CFxUserIO_DoSSGet__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_invoke_lispA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_CFxSelectionSet_MergeOptions()
static void CFxUIReactor_OnToolbarItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getCMDECHO(HandleRef jarg1)
static int CFxAPI_fdt_setpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxOsnapPoint_IsEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void CFxUIMenuItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesLayerPallete_SetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_FileNameRetValArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valW_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static UInt32 CFxOsnapPoint_GetCenterColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsGripsCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static bool CFxPreferencesOutput_GetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxLayoutManagerReactor_layoutToBeActivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ArgonAssertFuncW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr new_FileNameRetValArray__SWIG_2(int jarg1)
static UInt32 CFxViewDrawInfo_GetColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static global::System.IntPtr CFxUIGroup_GetMouseCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_GetPoints(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_handentA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3)
static IntPtr CFxBagFiler_queryX(HandleRef jarg1, HandleRef jarg2)
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 CFxAPI_fdt_setenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static bool CFxUITempOverrideKeysCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOpenSave_GetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByCrossingPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_invoke_lispW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxFileData_SetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxProfileManager_ProfileSetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxMainFrame_CFxCommandWindowInfo()
static global::System.IntPtr CFxString_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_regappW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_deleteChars__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxDatabase_setTDUSRTIMER(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAppInfo_GetAppName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManagerReactor_queryXSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxPreferencesAutoSplitDimensions_GetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxViewReactor()
static int CFxViewDrawInfo_GetPDFFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsLeftButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIDockableWindow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLayoutManagerReactor_layoutToBeActivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tblmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesUser(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUITempOverrideKey_SetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_SetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_0()
static global::System.IntPtr CFxString_from_ansi_str__SWIG_0(string jarg1)
static Int32 CFxPreferencesPlotSettings_GetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_relrbA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxString_AsString(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHistoryObject_IsArg(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string CFxString_ansi_str(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_KeywordVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUITabletMenu_SetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxHostAppServices_getMappedFont__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_BeginGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_GetInitialDirPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxUIToolbarItem_SetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxEdInputTracker_IsPreviewEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static void CFxDatabase_setPREVCMD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static int CFxUserIO_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, uint jarg5)
static global::System.IntPtr CFxGeometryClipper_GetClipper(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesDesignResources_GetProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdStaticRxObject_OdDbSelectionSet_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxSystemFiles_GetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxUIReactor.SwigDelegateCFxUIReactor_0 delegate0, CFxUIReactor.SwigDelegateCFxUIReactor_1 delegate1, CFxUIReactor.SwigDelegateCFxUIReactor_2 delegate2, CFxUIReactor.SwigDelegateCFxUIReactor_3 delegate3, CFxUIReactor.SwigDelegateCFxUIReactor_4 delegate4, CFxUIReactor.SwigDelegateCFxUIReactor_5 delegate5, CFxUIReactor.SwigDelegateCFxUIReactor_6 delegate6, CFxUIReactor.SwigDelegateCFxUIReactor_7 delegate7, CFxUIReactor.SwigDelegateCFxUIReactor_8 delegate8, CFxUIReactor.SwigDelegateCFxUIReactor_9 delegate9, CFxUIReactor.SwigDelegateCFxUIReactor_10 delegate10)
static global::System.IntPtr fdt_tablet_recW_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStringArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxGeometryClipper_SetTransform(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr ACTIVE_DOCUMENT()
static global::System.IntPtr CFxUI_CreateWorkspaceIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRecentlyErased(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_MLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void delete_CFxHistoryCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static double CFxView_visibleHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVSTA_GenerateNewMacroName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char jarg3)
static void CFxSystemFiles_SetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_GetString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void delete_CFxDatabase(HandleRef jarg1)
static void FDT_GENOUT_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxPreferencesOutput_GetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetUserInput__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginSaveExSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static int CFxAPI_fdt_getkwordW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, uint jarg4)
static bool CFxUIToolbarItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxSystemServices_GetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_30(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3)
static bool CFxLicenseInfo_IsUnregisteredVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileDimensionsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out short jarg4, out short jarg5)
static global::System.IntPtr CFxSystemServices_GetFxNetworkAccessManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLASTPOINT(HandleRef jarg1)
static void CFxStringArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxViewDrawInfo_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_FILL_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_Found_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4)
static global::System.IntPtr CFxSystemFiles_GetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr P_FILL_POLY_PolyCounts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_tblnextW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxPreferencesOpenSave_SetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxRangeInt_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxDocumentIterator(HandleRef jarg1)
static bool CFxPreferencesDesignResources_GetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_FLX_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_createObject()
static void CFxPreferencesDisplay_SetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static Int16 CFxDatabase_getWRITESTAT(HandleRef jarg1)
static void CFxUIImageItem_SetColumns(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4)
static bool CFxSelectionSet_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_equalNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void dcl_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_nentselpexA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9)
static global::System.IntPtr CFxDatabase_GetUnitsFormatter(HandleRef jarg1)
static void ClassPtrArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxHostAppServices_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr FDT_FLX_INFOA_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_binaryW_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxnamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxclosevport(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnapW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxAPI_fdt_distofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4)
static IntPtr dcl_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUITabletMenu_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr CFxGeometryClipper_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUIAcceleratorsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesTablet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDockableWindow_GetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVSTA_IsVSTAStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15)
static void CFxEditorReactor_mainFrameDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2)
static void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_FILL_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryItem(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxHistoryObjectArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_IsMFCUIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4)
static double CFxRangeDouble_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_getdistW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static global::System.IntPtr CFxInputPointManager_GetPrimaryClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesOpenSave_SetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_ispunct(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDatabase_setHPANG(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_file_copyW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, out int jarg5)
static bool CFxUIDoubleClickActionsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxView_WorldToView(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_dlg_callback_packetA()
static IntPtr CFxLayoutManagerReactor_desc()
static int CFxCurvePE_getGeneralCurve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr jarg3, bool jarg4)
static global::System.IntPtr CFxUIToolbarItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PRINTREC(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufW_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_2()
static global::System.IntPtr CFxVectorizeDevice_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loaded_appsW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxSystemServices_IsOEMModuleAuthorised(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4)
static int CFxAPI_fdt_remove_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDocumentManagerReactor_DocumentPreOpenSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static void delete_CFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_47(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxPreferences_CloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDoubleClickActionsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr new_dcl_callback_packetA()
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getCVPORT(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_1(HandleRef jarg1)
static char CFxString_getAtA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_GetElevatedUcsPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static UInt32 CFxPreferencesMatrixToolbar_GetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_cast(HandleRef jarg1)
static bool CFxHitTestInfo_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getBINDTYPE(HandleRef jarg1)
static global::System.IntPtr CFxPreferences_PackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPluginModuleInternal_valid(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_RemoveViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void WORLDPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void delete_CFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_CheckRegenAbortSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr FDT_FLX_INFO_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_LayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEdInputTracker_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDouble__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4)
static global::System.IntPtr new_CFxString__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, uint jarg2)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_createObject()
static global::System.IntPtr CFxViewDrawInfo_GetAdjustedViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesAdvancedAttEdit_GetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_vformat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_findW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxUIImageItem_GetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7)
static void CFxUIDockableWindow_SetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxInputPointManager_GetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesPlotSettings_GetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsLicenseHealthy(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_createObject()
static int CFxAPI_fdt_invokeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxMainFrame_ShowPropertiesWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxPreferencesDisplay_SetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void FDT_FLX_INFOA_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_capture_grread(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxSelectionSetReactor_OnSelectionEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxVectorizeDevice_SetPlotArea(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getELEVATION(HandleRef jarg1)
static void delete_IHLData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_GetActiveFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_tile_keyA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_getenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static global::System.IntPtr dcl_resbuf_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_DialogUnload(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesOpenSave_GetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grreadA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxDatabase_setCPLOTSTYLE(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxEditorReactor_gripEditCustomOpSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4)
static global::System.IntPtr new_P_POINT()
static void delete_VSTA_CONTEXT(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxLayoutManagerReactor_getRealClassName(IntPtr jarg1)
static int CFxAPI_fdt_tblsetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxPreferencesDisplay_GetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static global::System.IntPtr CFxBagFiler_getResBuf(HandleRef jarg1)
static void CFxPreferencesDesignResources_SetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_GetFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11)
static bool CFxDocument_IsInsideEntsel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_isperiodic(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void SIZE_T_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactorExtended_BeginModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIGroup_SetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetInitialActiveAreaByEYEContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int CFxAPI_fdt_copyresbufW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxHitTestInfo_SkipNextRightMouseButtonUpEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_ContainsSubent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesDisplay_GetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesSystem_SetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_putsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetVisibleRibbonTabCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dcl_u_val_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxLayoutManagerReactor_cast(HandleRef jarg1)
static void CFxIteratorEntityData_start(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewReactor_OnWorldToEyeChangedSwigExplicitCFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getPREVCMD(HandleRef jarg1)
static int CFxAPI_fdt_file_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUIImageItem_GetColumns(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_SetRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
static double CFxPreferencesDisplay_GetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_Initget__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setBACKZ(HandleRef jarg1, double jarg2)
static void delete_CFxSelectionData_CFxVertexData(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxCurvePE_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideNEntsel(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFOA_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_AddDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcornerW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxUI_DestroyRuntimeMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_dcl_binary()
static int CFxAPI_fdt_distofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4)
static void CFxInputPointManager_SetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 void fdt_u_valA_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_GENOUT_AREA()
static int CFxLicenseInfo_GetRoamingProductMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyImageItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 global::System.IntPtr GetFxLicenseManager()
static int CFxAPI_fdt_angtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static global::System.IntPtr CFxDocument_GetFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsExtendedApiEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_Get3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryCommand_Create(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool CFxMainFrame_CFxCommandWindowInfo_visibleMain_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_0 delegate0, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_1 delegate1, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_2 delegate2, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_3 delegate3, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_4 delegate4, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_5 delegate5, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_6 delegate6, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_7 delegate7, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_8 delegate8, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_9 delegate9, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_10 delegate10, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_11 delegate11)
static void delete_CFxPreferencesAutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetVisibleRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDwgStandards_GetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_resbufW()
static void dcl_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void delete_CFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getOPENFORMATVERSION(HandleRef jarg1)
static void CFxUIWorkspace_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUserIO_SetPromptExplanation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setLIMCHECK(HandleRef jarg1, bool jarg2)
static bool CFxLicenseInfo_IsLicenseCheckedOut(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxEditorReactor_isASwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setTEXTSIZE(HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxProfile_ResolveAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxCommandContext_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_directory_pW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxUIItemDefinition_SetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_DoEntsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerStubs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxCommand_HelpSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
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 Int16 CFxDatabase_getVIEWMODE(HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillBeReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxEditorReactor.SwigDelegateCFxEditorReactor_0 delegate0, CFxEditorReactor.SwigDelegateCFxEditorReactor_1 delegate1, CFxEditorReactor.SwigDelegateCFxEditorReactor_2 delegate2, CFxEditorReactor.SwigDelegateCFxEditorReactor_3 delegate3, CFxEditorReactor.SwigDelegateCFxEditorReactor_4 delegate4, CFxEditorReactor.SwigDelegateCFxEditorReactor_5 delegate5, CFxEditorReactor.SwigDelegateCFxEditorReactor_6 delegate6, CFxEditorReactor.SwigDelegateCFxEditorReactor_7 delegate7, CFxEditorReactor.SwigDelegateCFxEditorReactor_8 delegate8, CFxEditorReactor.SwigDelegateCFxEditorReactor_9 delegate9, CFxEditorReactor.SwigDelegateCFxEditorReactor_10 delegate10, CFxEditorReactor.SwigDelegateCFxEditorReactor_11 delegate11, CFxEditorReactor.SwigDelegateCFxEditorReactor_12 delegate12, CFxEditorReactor.SwigDelegateCFxEditorReactor_13 delegate13, CFxEditorReactor.SwigDelegateCFxEditorReactor_14 delegate14, CFxEditorReactor.SwigDelegateCFxEditorReactor_15 delegate15, CFxEditorReactor.SwigDelegateCFxEditorReactor_16 delegate16, CFxEditorReactor.SwigDelegateCFxEditorReactor_17 delegate17, CFxEditorReactor.SwigDelegateCFxEditorReactor_18 delegate18, CFxEditorReactor.SwigDelegateCFxEditorReactor_19 delegate19, CFxEditorReactor.SwigDelegateCFxEditorReactor_20 delegate20, CFxEditorReactor.SwigDelegateCFxEditorReactor_21 delegate21, CFxEditorReactor.SwigDelegateCFxEditorReactor_22 delegate22, CFxEditorReactor.SwigDelegateCFxEditorReactor_23 delegate23, CFxEditorReactor.SwigDelegateCFxEditorReactor_24 delegate24, CFxEditorReactor.SwigDelegateCFxEditorReactor_25 delegate25, CFxEditorReactor.SwigDelegateCFxEditorReactor_26 delegate26, CFxEditorReactor.SwigDelegateCFxEditorReactor_27 delegate27, CFxEditorReactor.SwigDelegateCFxEditorReactor_28 delegate28, CFxEditorReactor.SwigDelegateCFxEditorReactor_29 delegate29, CFxEditorReactor.SwigDelegateCFxEditorReactor_30 delegate30, CFxEditorReactor.SwigDelegateCFxEditorReactor_31 delegate31, CFxEditorReactor.SwigDelegateCFxEditorReactor_32 delegate32, CFxEditorReactor.SwigDelegateCFxEditorReactor_33 delegate33, CFxEditorReactor.SwigDelegateCFxEditorReactor_34 delegate34, CFxEditorReactor.SwigDelegateCFxEditorReactor_35 delegate35, CFxEditorReactor.SwigDelegateCFxEditorReactor_36 delegate36, CFxEditorReactor.SwigDelegateCFxEditorReactor_37 delegate37, CFxEditorReactor.SwigDelegateCFxEditorReactor_38 delegate38, CFxEditorReactor.SwigDelegateCFxEditorReactor_39 delegate39, CFxEditorReactor.SwigDelegateCFxEditorReactor_40 delegate40, CFxEditorReactor.SwigDelegateCFxEditorReactor_41 delegate41, CFxEditorReactor.SwigDelegateCFxEditorReactor_42 delegate42, CFxEditorReactor.SwigDelegateCFxEditorReactor_43 delegate43, CFxEditorReactor.SwigDelegateCFxEditorReactor_44 delegate44, CFxEditorReactor.SwigDelegateCFxEditorReactor_45 delegate45, CFxEditorReactor.SwigDelegateCFxEditorReactor_46 delegate46, CFxEditorReactor.SwigDelegateCFxEditorReactor_47 delegate47, CFxEditorReactor.SwigDelegateCFxEditorReactor_48 delegate48, CFxEditorReactor.SwigDelegateCFxEditorReactor_49 delegate49, CFxEditorReactor.SwigDelegateCFxEditorReactor_50 delegate50, CFxEditorReactor.SwigDelegateCFxEditorReactor_51 delegate51, CFxEditorReactor.SwigDelegateCFxEditorReactor_52 delegate52, CFxEditorReactor.SwigDelegateCFxEditorReactor_53 delegate53, CFxEditorReactor.SwigDelegateCFxEditorReactor_54 delegate54, CFxEditorReactor.SwigDelegateCFxEditorReactor_55 delegate55, CFxEditorReactor.SwigDelegateCFxEditorReactor_56 delegate56, CFxEditorReactor.SwigDelegateCFxEditorReactor_57 delegate57, CFxEditorReactor.SwigDelegateCFxEditorReactor_58 delegate58, CFxEditorReactor.SwigDelegateCFxEditorReactor_59 delegate59, CFxEditorReactor.SwigDelegateCFxEditorReactor_60 delegate60, CFxEditorReactor.SwigDelegateCFxEditorReactor_61 delegate61, CFxEditorReactor.SwigDelegateCFxEditorReactor_62 delegate62, CFxEditorReactor.SwigDelegateCFxEditorReactor_63 delegate63, CFxEditorReactor.SwigDelegateCFxEditorReactor_64 delegate64, CFxEditorReactor.SwigDelegateCFxEditorReactor_65 delegate65, CFxEditorReactor.SwigDelegateCFxEditorReactor_66 delegate66, CFxEditorReactor.SwigDelegateCFxEditorReactor_67 delegate67, CFxEditorReactor.SwigDelegateCFxEditorReactor_68 delegate68, CFxEditorReactor.SwigDelegateCFxEditorReactor_69 delegate69, CFxEditorReactor.SwigDelegateCFxEditorReactor_70 delegate70, CFxEditorReactor.SwigDelegateCFxEditorReactor_71 delegate71, CFxEditorReactor.SwigDelegateCFxEditorReactor_72 delegate72, CFxEditorReactor.SwigDelegateCFxEditorReactor_73 delegate73, CFxEditorReactor.SwigDelegateCFxEditorReactor_74 delegate74, CFxEditorReactor.SwigDelegateCFxEditorReactor_75 delegate75, CFxEditorReactor.SwigDelegateCFxEditorReactor_76 delegate76, CFxEditorReactor.SwigDelegateCFxEditorReactor_77 delegate77, CFxEditorReactor.SwigDelegateCFxEditorReactor_78 delegate78, CFxEditorReactor.SwigDelegateCFxEditorReactor_79 delegate79, CFxEditorReactor.SwigDelegateCFxEditorReactor_80 delegate80, CFxEditorReactor.SwigDelegateCFxEditorReactor_81 delegate81, CFxEditorReactor.SwigDelegateCFxEditorReactor_82 delegate82, CFxEditorReactor.SwigDelegateCFxEditorReactor_83 delegate83, CFxEditorReactor.SwigDelegateCFxEditorReactor_84 delegate84, CFxEditorReactor.SwigDelegateCFxEditorReactor_85 delegate85, CFxEditorReactor.SwigDelegateCFxEditorReactor_86 delegate86, CFxEditorReactor.SwigDelegateCFxEditorReactor_87 delegate87, CFxEditorReactor.SwigDelegateCFxEditorReactor_88 delegate88, CFxEditorReactor.SwigDelegateCFxEditorReactor_89 delegate89, CFxEditorReactor.SwigDelegateCFxEditorReactor_90 delegate90, CFxEditorReactor.SwigDelegateCFxEditorReactor_91 delegate91)
static global::System.IntPtr CFxSystemFiles_GetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_promptW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxSystemServices_userBreak(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawContext_GetViewDrawInfo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr P_FILL_POLY_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetDocumentByFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxTracker.SwigDelegateCFxTracker_0 delegate0, CFxTracker.SwigDelegateCFxTracker_1 delegate1, CFxTracker.SwigDelegateCFxTracker_2 delegate2, CFxTracker.SwigDelegateCFxTracker_3 delegate3, CFxTracker.SwigDelegateCFxTracker_4 delegate4, CFxTracker.SwigDelegateCFxTracker_5 delegate5, CFxTracker.SwigDelegateCFxTracker_6 delegate6, CFxTracker.SwigDelegateCFxTracker_7 delegate7)
static global::System.IntPtr CFxInputPointManager_GetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getFilletPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getprofileslistA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static bool CFxLicenseManager_IsProductActivated__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setUCSICON(HandleRef jarg1, Int16 jarg2)
static int CFxString_deleteChars__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_replaceW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, char jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_retnil(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentBecameCurrentSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommand_GetBuiltInGroupName()
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4)
static void CFxInputContextReactor_BeginGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxSelectionSet_MergeResult()
static IntPtr CFxSelectionSet_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_visibleWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setLOGINNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxPreferencesDynamicInputs_SetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int IHLData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetW_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr dcl_u_val_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_IsModelLayoutActive(HandleRef jarg1)
static void CFxInputContextReactor_EndGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxSelectionSet_AddObjectFilter(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxPreferencesSystem_SetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIToolbarItem_SetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxSystemFiles_SetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_FILL_POLY_PolyCounts_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIMenuItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIWorkspace_GetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_AddOtrackBasePoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void delete_CFxDatabaseHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_nentselpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxDocumentManagerReactor_DocumentCreateStartedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesOLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxLicenseInfo_GetError(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxPreferencesPlotSettings_SetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUITabletMenu_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_formatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_compareNoCaseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesSystem_SetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_fdt_tblsearchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void FDT_FLX_INFO_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxViewportSnapShot_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsPrerelease(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_PointToSCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxVectorizeDevice_GetFxViewByCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static String CFxDatabase_getUSERS2(HandleRef jarg1)
static void CFxDatabase_setUNDOCTL(HandleRef jarg1, Int16 jarg2)
static int CFxUserIO_GetDouble__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxUIReactor_OnInterfaceAboutToReload(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesDisplay_SetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxProfileManagerReactor_currentProfileWillChange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_TRACKER_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delselecthook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxTrace__SWIG_1([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2)
static bool CFxDatabase_getLIMCHECK(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesSystem_GetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxHitTestInfo_GetKeyText(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimRight__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static Int32 CFxCommand_flags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_selectionSetDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_SplitW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr fdt_resbufA_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3)
static string FDT_FLX_INFOA_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonRowElementItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUITempOverrideKey_SetKeySequence(HandleRef jarg1, HandleRef jarg2)
static void WORLDPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxPreferencesLayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesSystem_GetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr CFxDatabaseReactor_createObject()
static global::System.IntPtr CFxUITempOverrideKey_GetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grdraw(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, int jarg4, int jarg5)
static bool CFxGeomUtils_GetEdgesFromFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxDocumentIterator_SWIGUpcast(global::System.IntPtr jarg1)
static bool CFxView_IsZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDrafting_SetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxSystemFiles_GetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxIteratorEntityData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEdInputTracker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_0 delegate0, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_1 delegate1, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_2 delegate2, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_3 delegate3, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_4 delegate4, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_5 delegate5, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_6 delegate6, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_7 delegate7, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_8 delegate8, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_9 delegate9, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_10 delegate10, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_11 delegate11, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_12 delegate12, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_13 delegate13)
static global::System.IntPtr new_CFxString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesHeadsUpDisplay_GetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_FLX_INFOW()
static int CFxAPI_fdt_xunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_grtextW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4)
static bool CFxHitTestInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoNentsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10)
static void CFxUI_UpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListSetColumnWidthW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static global::System.IntPtr CFxSelectionSet_GetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_dlg_DialogLoadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxEditorReactor_mainFrameCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxVectorizeDevice_RemoveDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint SIZE_T_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static global::System.IntPtr CFxPreferences_DimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_getWorldToEyeTransform(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SIZE_T_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_format__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr CFxMainFrame_GetCommandLineWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr PRINT_EXT_INFO_LowLeCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileActionW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxSystemFiles_GetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getHPDOUBLE(HandleRef jarg1)
static void CFxPreferencesDisplay_SetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setVIEWTWIST(HandleRef jarg1, double jarg2)
static IntPtr CFxSelectionSetReactor_isASwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesAutocomplete_GetAlias(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_set3dview(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, double jarg7)
static global::System.IntPtr CFxSystemServices_GetHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dlg_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_unload_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_islower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxVectorizeDevice_HitTest(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_curve_getfirstderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxUnitsFormatter_ResBufToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxVectorizeDevice_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxInputContextReactor_desc()
static int CFxPreferencesDynamicInputs_GetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxPreferencesPackAndGo_GetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_genout(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, short jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxPreferencesSystem_SetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPackAndGo_SetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_setValueFinal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxOtrackPoint_GetOtrackBasePointCrossColor()
static void FDT_FLX_INFOW_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_beginModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxRangeInt_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_tblmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint SIZE_T_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxUserIO_GetString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxUITabletMenu_GetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setviewA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxDocumentManagerReactor_DocumentPreOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static bool CFxView_IsRectangular(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr CFxBagFiler_desc()
static int CFxAPI_dcl_new_positioned_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxSelectionSet_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHitTestInfo_GetGesturePinchCenterPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_cast(HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getVSMIN(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getUCSNAME(HandleRef jarg1)
static int CFxAPI_dcl_start_listA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4, int jarg5)
static global::System.IntPtr CFxHostAppServices_getDsName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_findOneOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxProfileManagerReactor_currentProfileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_DrawTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_P_IMAGE(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_u_valA_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_InAppleSandbox(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_UpdateStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPSTYLEMODE(HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFO_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxPreferencesOLEEditor_GetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static bool CFxUIImageItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxCommand_flagsSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static ushort CFxDocumentManager_GetDocumentCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIItemDefinition_SetCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setVSMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsKeyboardPressEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_isASwigExplicitCFxLayoutManagerReactor(HandleRef jarg1)
static double CFxView_Elevation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableSnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByFence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxMainFrame_CFxCommandWindowInfo_linesCountMain_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getPERIMETER(HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_Removed_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxSelectionData_GetMethod(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPoint3D__SWIG_1([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_grreadA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double CFxPreferencesMLeaderSettings_GetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcolorindex(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, int jarg4, out int jarg5)
static int CFxAPI_dlg_ImageSlideA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static global::System.IntPtr CFxCurvePE_cast(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesPlotSettings_GetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void delete_FDT_FLX_INFOA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_UppRiCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=2)]double[] jarg2)
static int CFxAPI_fdt_file_directory_pA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxGeomUtils_SelectSubentsByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxDatabase_getPERSPECTIVE(HandleRef jarg1)
static int CFxAPI_fdt_curve_getendparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static short FDT_GENOUT_AREA_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutocomplete_SetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_toolbarstateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7)
static int CFxAPI_fdt_getresourceimageA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxScriptEngine_LoadScript(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [In, MarshalAs(UnmanagedType.LPArray)]char[] jarg3)
static void CFxPreferencesOutput_SetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxCommandContext_SetExpressionToExecute(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static UInt64 CFxPreferencesDiscardDuplicatesSettings_GetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommand_GetLISPGroupName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_ValidateDongle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_VPORT_EXT_INFO()
static bool CFxPreferencesDisplay_GetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptReal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void CFxUIAccelerator_SetKeySequence(HandleRef jarg1, HandleRef jarg2)
static void CFxScriptEngine_Restart(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxInputPointManager_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dcl_term_dialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static bool CFxAPI_CheckFilter(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAppInfo_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxGDIDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ImageBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static global::System.IntPtr CFxString_arg__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxPreferencesPlotSettings_SetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_LlWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_dictionary_searchA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4)
static int CFxUserIO_GetDist__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void fdt_u_valW_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxDatabase_setCIRCLERAD(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_getcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void CFxPreferencesPackAndGo_SetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLayoutManagerReactor_layoutToBeDeactivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesDisplay_GetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesSystem_GetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHANDLES(HandleRef jarg1, Int16 jarg2)
static void TRACKER_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxViewDrawInfo_SetExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSelectionSetReactor_SWIGUpcast(global::System.IntPtr jarg1)
static Int32 CFxPreferencesPlotSettings_GetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_2(int jarg1)
static int CFxAPI_dcl_end_image(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnInterfaceReloadedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxHistoryCommand_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr TRACKER_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_arg__SWIG_49(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesPackAndGo_SetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static void CFxEditorReactor_appActivated(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxVectorizeDevice_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxLicenseInfo_IsLispEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static bool CFxDatabase_SaveFile__SWIG_2(HandleRef jarg1)
static void CFxVSTA_StartMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_resbufW_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxView_SetZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_boundingbox(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxPreferencesSelection_GetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesInputHistory_SetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_m_bAdded_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_GetPoint__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void dcl_binary_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingLicenseMaxDays(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_rec_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_AddResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxString_compareNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4)
static void CFxViewDrawInfo_SetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUI_DestroyMouseButton(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_IsRoaming(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarVisibilityChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_GENOUT_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxViewDrawInfo_IsBackClipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesEntityMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static string FDT_FLX_INFOA_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetViewportInternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_appDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_fdt_tablet_rec(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_start_listW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5)
static int CFxRangeInt_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsPanMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxView_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_find__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIDoubleClickAction_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsLeftButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_SplitW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4)
static int CFxUserIO_GetNoteEditor__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_remove_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static double CFxDatabase_getVIEWSIZE(HandleRef jarg1)
static global::System.IntPtr CFxUITempOverrideKey_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxProfile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnInterfaceReloaded(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr CFxString_arg__SWIG_51(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static String CFxDatabase_getLSPALOAD(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsSHPEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxLayoutManagerReactor(HandleRef jarg1)
static void P_OLEOBJ_pReserved2_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxView_GetCorrectionScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_end_list(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUI_AddGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string fdt_tablet_rec_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_FindApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getUCSYDIR(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_GetCadCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactor_BeginGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxLicenseInfo_EnableLisp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_register_funcA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetVisibleToolbarCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_set_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static global::System.IntPtr CFxTrackerContext_GetFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CFxVertexData_m_Point_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static String CFxDatabase_getDWGPREFIX(HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxUIMenuItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFOW_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_isA(HandleRef jarg1)
static int CFxAPI_fdt_isupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_curve_getstartpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static bool CFxHitTestInfo_IsMiddleMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_KeywordVector__SWIG_2(int jarg1)
static void CFxUI_DestroyRuntimeToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLicenseManager_ShowDashboard(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxProfileManager_ProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPicture_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr CFxRecentlyErased_GetObjects(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxUserIO_GetAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static short dcl_binary_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
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 void CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesSystem_GetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_filename_directoryW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_fdt_tabletinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_GENOUT_AREA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_findfileA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxUserIO_GetNoteEditor__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getLASTANGLE(HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_rec_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxPreferencesEnterpoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setactvport(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static int CFxAPI_fdt_GetVportExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void fdt_VPORT_EXT_INFO_WinHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemFiles_SetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesEnterpoint_SetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 dcl_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsMouseMoved(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_43(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4)
static bool CFxHostAppServices_doFullCRCCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_isprint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_curve_getclosestpointto(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, int jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5)
static global::System.IntPtr CFxUIGroup_GetDoubleClickActions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_VPORT_EXT_INFO_hWnd_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxEdInputTracker_addDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxAPI_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_CheckRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxHitTestInfo_GetWheelOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_u_valW_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_BeginGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9)
static global::System.IntPtr CFxString_arg__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4)
static void delete_dcl_u_val(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_shootRayAgainstObject__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxRecentFiles_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIItemDefinition_SetID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_from_ansi_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_SetPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr FileNameRetValArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_fdt_tablet_recW(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEntityData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufA_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesDesignResources(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesSystem_SetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxUIImageItem_SetImageName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxDatabaseReactor_isASwigExplicitCFxDatabaseReactor(HandleRef jarg1)
static int CFxAPI_fdt_textscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseManager_StartActivation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDwgStandards_SetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxAPI_fdt_getconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static void CFxUI_DestroyRuntimeToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxView_GetGeomExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxUnitsFormatter_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxSystemServices_FileDialog__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxUnitsFormatter_StringToPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewDrawInfo_SetUseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxGripPointsPE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxVectorizeDevice_GetPaperSpaceOverallView(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_add_listW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxView_PointToSCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxPreferencesDynamicInputs_GetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoEntsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6)