Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
CFxSelectionSet.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace PCAD_DOT_NET {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16using Teigha.TD;
17
18public class CFxSelectionSet : global::System.IDisposable {
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 protected bool swigCMemOwn;
22 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
23 public CFxSelectionSet(IntPtr cPtr, bool cMemoryOwn) {
24 swigCMemOwn = cMemoryOwn;
25 swigCPtr = new HandleRef(this, cPtr);
26 }
27 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
28 public static HandleRef getCPtr(CFxSelectionSet obj) {
29 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
30 }
31
33 Dispose(false);
34 }
35
36 public void Dispose() {
37 Dispose(true);
38 global::System.GC.SuppressFinalize(this);
39 }
40
41 protected virtual void Dispose(bool disposing) {
42 lock(this) {
43 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
44 if (swigCMemOwn) {
45 swigCMemOwn = false;
47 }
48 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
49 }
50 }
51 }
52
53 public virtual uint GetNumber() {
56 return ret;
57 }
58
59 public virtual CFxDatabase GetFxDatabase() {
60 CFxDatabase ret = (CFxDatabase)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(CFxDatabase),PCADGlobalsPINVOKE.CFxSelectionSet_GetFxDatabase(swigCPtr),false); /*createInt 3_2*/
61
63 return ret;
64}
65
66 public virtual uint GetLength() {
69 return ret;
70 }
71
72 public virtual uint GetTotalSubents() {
75 return ret;
76 }
77
78 public virtual OdDbObjectId GetId(uint index) {
79 OdDbObjectId ret = new OdDbObjectId(PCADGlobalsPINVOKE.CFxSelectionSet_GetId(swigCPtr, index), false);
81 return ret;
82 }
83
84 public virtual uint SubentGetLength(uint index) {
85 uint ret = PCADGlobalsPINVOKE.CFxSelectionSet_SubentGetLength(swigCPtr, index);
87 return ret;
88 }
89
90 public virtual OdDbFullSubentPath SubentGetId(uint index, uint subentIndex) {
91 OdDbFullSubentPath ret = new OdDbFullSubentPath(PCADGlobalsPINVOKE.CFxSelectionSet_SubentGetId(swigCPtr, index, subentIndex), false);
93 return ret;
94 }
95
96 public virtual void Clear() {
99 }
100
101 public virtual bool IsMember(OdDbObjectId id) {
104 return ret;
105 }
106
107 public virtual bool IsMember(OdDbFullSubentPath path) {
110 return ret;
111 }
112
113 public virtual void GetClassesFound(CLASS_VECTOR classes, SIZE_T_VECTOR objects) {
116 }
117
118 public virtual OdRxClass GetCommonBaseClass() {
119 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),PCADGlobalsPINVOKE.CFxSelectionSet_GetCommonBaseClass(swigCPtr),false); /*createInt 3_2*/
120
122 return ret;
123}
124
125 public virtual OdRxClass GetCommonBasePEClass() {
126 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),PCADGlobalsPINVOKE.CFxSelectionSet_GetCommonBasePEClass(swigCPtr),false); /*createInt 3_2*/
127
129 return ret;
130}
131
132 public virtual void GetObjectsByClass(OdRxClass pClass, OdDbObjectIdArray objects) {
135 }
136
137 public virtual int GetNTHX(int index, SWIGTYPE_p_p_fdt_resbufW data) {
138 int ret = PCADGlobalsPINVOKE.CFxSelectionSet_GetNTHX(swigCPtr, index, SWIGTYPE_p_p_fdt_resbufW.getCPtr(data));
140 return ret;
141 }
142
143 public virtual bool Add(OdDbObjectId objId) {
144 bool ret = PCADGlobalsPINVOKE.CFxSelectionSet_Add(swigCPtr, OdDbObjectId.getCPtr(objId));
146 return ret;
147 }
148
149 public virtual bool Remove(OdDbObjectId objId) {
152 return ret;
153 }
154
155 public virtual bool SubentAdd(OdDbFullSubentPath path) {
158 return ret;
159 }
160
161 public virtual bool SubentRemove(OdDbFullSubentPath path) {
164 return ret;
165 }
166
170 }
171
173 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_GetCustomFilter(swigCPtr);
174 SWIGTYPE_p_CFxSelectionSetFilter ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxSelectionSetFilter(cPtr, false);
176 return ret;
177 }
178
179 public virtual void AddObjectFilter(OdRxClass pClass) {
182 }
183
184 public virtual void ClearObjectFilters() {
187 }
188
189 public class MergeResult : global::System.IDisposable {
190 private Object locker = new Object();
191 private HandleRef swigCPtr;
192 protected bool swigCMemOwn;
193 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
194 public MergeResult(IntPtr cPtr, bool cMemoryOwn) {
195 swigCMemOwn = cMemoryOwn;
196 swigCPtr = new HandleRef(this, cPtr);
197 }
198 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
199 public static HandleRef getCPtr(MergeResult obj) {
200 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
201 }
202
203 ~MergeResult() {
204 Dispose(false);
205 }
206
207 public void Dispose() {
208 Dispose(true);
209 global::System.GC.SuppressFinalize(this);
210 }
211
212 protected virtual void Dispose(bool disposing) {
213 lock(this) {
214 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
215 if (swigCMemOwn) {
216 swigCMemOwn = false;
217 PCADGlobalsPINVOKE.delete_CFxSelectionSet_MergeResult(swigCPtr); // NESTED_DTOR_CSHARP
218 }
219 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
220 }
221 }
222 }
223
224 public uint m_Found {
225 set {
228 }
229 get {
232 return ret;
233 }
234 }
235
236 public uint m_Duplicated {
237 set {
240 }
241 get {
244 return ret;
245 }
246 }
247
248 public uint m_Removed {
249 set {
252 }
253 get {
256 return ret;
257 }
258 }
259
260 public uint m_Groups {
261 set {
264 }
265 get {
268 return ret;
269 }
270 }
271
273 set {
276 }
277 get {
280 return ret;
281 }
282 }
283
285 set {
288 }
289 get {
292 return ret;
293 }
294 }
295
297 set {
300 }
301 get {
304 return ret;
305 }
306 }
307
309 set {
312 }
313 get {
316 return ret;
317 }
318 }
319
321 set {
324 }
325 get {
328 return ret;
329 }
330 }
331
333 set {
336 }
337 get {
340 return ret;
341 }
342 }
343
344 public uint m_RemovedCloud {
345 set {
348 }
349 get {
352 return ret;
353 }
354 }
355
356 public MergeResult() : this(PCADGlobalsPINVOKE.new_CFxSelectionSet_MergeResult(), true) {
358 }
359
360 }
361
362 public class MergeOptions : global::System.IDisposable {
363 private Object locker = new Object();
364 private HandleRef swigCPtr;
365 protected bool swigCMemOwn;
366 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
367 public MergeOptions(IntPtr cPtr, bool cMemoryOwn) {
368 swigCMemOwn = cMemoryOwn;
369 swigCPtr = new HandleRef(this, cPtr);
370 }
371 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
372 public static HandleRef getCPtr(MergeOptions obj) {
373 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
374 }
375
376 ~MergeOptions() {
377 Dispose(false);
378 }
379
380 public void Dispose() {
381 Dispose(true);
382 global::System.GC.SuppressFinalize(this);
383 }
384
385 protected virtual void Dispose(bool disposing) {
386 lock(this) {
387 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
388 if (swigCMemOwn) {
389 swigCMemOwn = false;
390 PCADGlobalsPINVOKE.delete_CFxSelectionSet_MergeOptions(swigCPtr); // NESTED_DTOR_CSHARP
391 }
392 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
393 }
394 }
395 }
396
397 public int m_RemoveOptions {
398 set {
401 }
402 get {
405 return ret;
406 }
407 }
408
410 set {
413 }
414 get {
415 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_MergeOptions_m_pFilter_get(swigCPtr);
416 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
418 return ret;
419 }
420 }
421
423 set {
426 }
427 get {
428 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_MergeOptions_m_Classes_get(swigCPtr);
429 ClassPtrArray ret = (cPtr == global::System.IntPtr.Zero) ? null : new ClassPtrArray(cPtr, false);
431 return ret;
432 }
433 }
434
435 public MergeOptions() : this(PCADGlobalsPINVOKE.new_CFxSelectionSet_MergeOptions(), true) {
437 }
438
439 }
440
444 return ret;
445 }
446
450 return ret;
451 }
452
453 public virtual void AddReactor(CFxSelectionSetReactor pReactor) {
456 }
457
458 public virtual void RemoveReactor(CFxSelectionSetReactor pReactor) {
461 }
462
463 public virtual bool IsHighlightEnabled() {
466 return ret;
467 }
468
469 public virtual void SetHighlightEnabled(bool enable) {
472 }
473
475 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_CreateIterator(swigCPtr);
476 CFxIteratorSelectionData ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxIteratorSelectionData(cPtr, false);
478 return ret;
479 }
480
481 public virtual bool IsEmpty() {
482 bool ret = PCADGlobalsPINVOKE.CFxSelectionSet_IsEmpty(swigCPtr);
484 return ret;
485 }
486
487 public static CFxSelectionSet SelectByPoint(OdGePoint3d pointWCS, double pickboxEYE, CFxView pView) {
488 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByPoint(OdGePoint3d.getCPtr(pointWCS), pickboxEYE, CFxView.getCPtr(pView));
489 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
491 return ret;
492 }
493
494 public static CFxSelectionSet SelectByBox(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView) {
495 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByBox(OdGePoint3d.getCPtr(firstPointWCS), OdGePoint3d.getCPtr(secondPointWCS), CFxView.getCPtr(pView));
496 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
498 return ret;
499 }
500
501 public static CFxSelectionSet SelectByWindow(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView) {
502 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByWindow(OdGePoint3d.getCPtr(firstPointWCS), OdGePoint3d.getCPtr(secondPointWCS), CFxView.getCPtr(pView));
503 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
505 return ret;
506 }
507
508 public static CFxSelectionSet SelectByCrossingWindow(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView) {
509 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByCrossingWindow(OdGePoint3d.getCPtr(firstPointWCS), OdGePoint3d.getCPtr(secondPointWCS), CFxView.getCPtr(pView));
510 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
512 return ret;
513 }
514
515 public static CFxSelectionSet SelectByPolygon(OdGePoint3dArray pointsWCS, CFxView pView) {
516 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByPolygon(OdGePoint3dArray.getCPtr(pointsWCS), CFxView.getCPtr(pView));
517 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
519 return ret;
520 }
521
524 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
526 return ret;
527 }
528
529 public static CFxSelectionSet SelectByFence(OdGePoint3dArray pointsWCS, CFxView pView) {
530 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByFence(OdGePoint3dArray.getCPtr(pointsWCS), CFxView.getCPtr(pView));
531 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
533 return ret;
534 }
535
537 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectAll(CFxDocument.getCPtr(pDoc));
538 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
540 return ret;
541 }
542
544 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectLast(CFxDocument.getCPtr(pDoc));
545 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
547 return ret;
548 }
549
550 public static CFxSelectionSet SelectGroup(OdDbObjectId idGroup) {
551 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectGroup(OdDbObjectId.getCPtr(idGroup));
552 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
554 return ret;
555 }
556
558 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectPrevious(CFxDocument.getCPtr(pDoc));
559 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
561 return ret;
562 }
563
564 public static CFxSelectionSet SelectByView(CFxView pView) {
565 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectByView(CFxView.getCPtr(pView));
566 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
568 return ret;
569 }
570
571 public static CFxSelectionSet SelectForHatch(CFxView pView, OdGePoint3d pickPoint, OdGeExtents3d extents) {
572 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxSelectionSet_SelectForHatch(CFxView.getCPtr(pView), OdGePoint3d.getCPtr(pickPoint), OdGeExtents3d.getCPtr(extents));
573 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
575 return ret;
576 }
577
578 public const int eRemoveNone = 0x0;
579 public const int eRemoveOnLockedLayers = 0x1;
580 public const int eRemoveOnOffLayers = 0x2;
581 public const int eRemoveOnFrozenLayers = 0x4;
582 public const int eRemoveNotInCurrentSpace = 0x8;
583 public const int eRemoveNotRectViewports = 0x10;
584 public const int eRemoveOverallViewports = 0x20;
585 public const int eRemoveNotInWorkingSet = 0x40;
586 public const int eRemoveCloud = 0x80;
590
591}
592
593}
static HandleRef getCPtr(CFxDocument obj)
Definition: CFxDocument.cs:27
MergeOptions(IntPtr cPtr, bool cMemoryOwn)
virtual void Dispose(bool disposing)
static HandleRef getCPtr(MergeOptions obj)
virtual void Dispose(bool disposing)
MergeResult(IntPtr cPtr, bool cMemoryOwn)
static HandleRef getCPtr(MergeResult obj)
virtual void SetHighlightEnabled(bool enable)
virtual SWIGTYPE_p_CFxSelectionSetFilter GetCustomFilter()
static CFxSelectionSet SelectByWindow(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView)
static CFxSelectionSet SelectByPoint(OdGePoint3d pointWCS, double pickboxEYE, CFxView pView)
virtual void GetObjectsByClass(OdRxClass pClass, OdDbObjectIdArray objects)
virtual uint SubentGetLength(uint index)
virtual CFxDatabase GetFxDatabase()
virtual int GetNTHX(int index, SWIGTYPE_p_p_fdt_resbufW data)
virtual OdRxClass GetCommonBaseClass()
virtual OdRxClass GetCommonBasePEClass()
static CFxSelectionSet SelectGroup(OdDbObjectId idGroup)
virtual bool Remove(OdDbObjectId objId)
static CFxSelectionSet SelectByCrossingWindow(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView)
virtual CFxSelectionSet.MergeResult Merge(OdDbObjectIdArray idsToMerge, CFxSelectionSet.MergeOptions options)
virtual void SetCustomFilter(SWIGTYPE_p_CFxSelectionSetFilter pFilter)
const int eRemoveDefExceptNotInCurrentSpaceInvalid
virtual bool IsMember(OdDbFullSubentPath path)
virtual OdDbFullSubentPath SubentGetId(uint index, uint subentIndex)
static HandleRef getCPtr(CFxSelectionSet obj)
static CFxSelectionSet SelectAll(CFxDocument pDoc)
virtual void GetClassesFound(CLASS_VECTOR classes, SIZE_T_VECTOR objects)
static CFxSelectionSet SelectByBox(OdGePoint3d firstPointWCS, OdGePoint3d secondPointWCS, CFxView pView)
virtual void AddObjectFilter(OdRxClass pClass)
virtual bool Add(OdDbObjectId objId)
virtual void Dispose(bool disposing)
static CFxSelectionSet SelectByPolygon(OdGePoint3dArray pointsWCS, CFxView pView)
CFxSelectionSet(IntPtr cPtr, bool cMemoryOwn)
static CFxSelectionSet SelectLast(CFxDocument pDoc)
virtual CFxIteratorSelectionData CreateIterator()
virtual bool SubentAdd(OdDbFullSubentPath path)
virtual bool SubentRemove(OdDbFullSubentPath path)
virtual void AddReactor(CFxSelectionSetReactor pReactor)
const int eRemoveDefaultInvalidButNonRectViewports
virtual void RemoveReactor(CFxSelectionSetReactor pReactor)
static CFxSelectionSet SelectByFence(OdGePoint3dArray pointsWCS, CFxView pView)
static CFxSelectionSet SelectByView(CFxView pView)
virtual OdDbObjectId GetId(uint index)
virtual CFxSelectionSet.MergeResult Merge(CFxSelectionSet pSS, CFxSelectionSet.MergeOptions options)
static CFxSelectionSet SelectByCrossingPolygon(OdGePoint3dArray pointsWCS, CFxView pView)
virtual bool IsMember(OdDbObjectId id)
static CFxSelectionSet SelectPrevious(CFxDocument pDoc)
static CFxSelectionSet SelectForHatch(CFxView pView, OdGePoint3d pickPoint, OdGeExtents3d extents)
static HandleRef getCPtr(CFxSelectionSetReactor obj)
static HandleRef getCPtr(CFxView obj)
Definition: CFxView.cs:27
static HandleRef getCPtr(CLASS_VECTOR obj)
Definition: CLASS_VECTOR.cs:29
static HandleRef getCPtr(ClassPtrArray obj)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_pFilter_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeOptions_m_Classes_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedCloud_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static uint CFxSelectionSet_GetLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSelectionSet_GetCommonBaseClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_MergeResult_m_RemovedCloud_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_GetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectPrevious(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxSelectionSet_MergeOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_Classes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxSelectionSet_GetClassesFound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxSelectionSet_IsEmpty(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 CFxSelectionSet_GetObjectsByClass(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSelectionSet_SelectByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 void CFxSelectionSet_ClearObjectFilters(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionSet_MergeOptions_m_RemoveOptions_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSelectionSet_MergeResult(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeOptions_m_pFilter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_SetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_MergeResult_m_Found_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectLast(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSelectionSet_GetCommonBasePEClass(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 uint CFxSelectionSet_MergeResult_m_Duplicated_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_Removed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_GetNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
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 bool CFxSelectionSet_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_Groups_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxSelectionSet_SelectAll(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSelectionSet_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint 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 bool CFxSelectionSet_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_Duplicated_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxSelectionSet_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef 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 uint CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeOptions_m_RemoveOptions_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByView(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_Groups_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SubentGetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3)
static uint CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_GetTotalSubents(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxSelectionSet_IsHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_SetHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByCrossingPolygon(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 CFxSelectionSet_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSelectionSet_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_AddObjectFilter(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_GetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxSelectionSet_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByFence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_Removed_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
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 HandleRef getCPtr(SIZE_T_VECTOR obj)
static HandleRef getCPtr(fdt_resbufW obj)
Definition: fdt_resbufW.cs:28
static HandleRef getCPtr(OdGeExtents3d obj)
static HandleRef getCPtr(OdGePoint3dArray obj)
static HandleRef getCPtr(OdGePoint3d obj)
Definition: OdGePoint3d.cs:26
static HandleRef getCPtr(OdRxClass obj)
Definition: OdRxClass.cs:25
static HandleRef getCPtr(OdDbFullSubentPath obj)
static HandleRef getCPtr(OdDbObjectIdArray obj)
static HandleRef getCPtr(OdDbObjectId obj)
Definition: OdDbObjectId.cs:27