-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinimal-UiObjects.py
More file actions
7311 lines (7310 loc) · 213 KB
/
Minimal-UiObjects.py
File metadata and controls
7311 lines (7310 loc) · 213 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import adsk.core, adsk.fusion, adsk.cam
__all__ = ['Toolbars', 'WorkSpaces', 'AllPanels', 'AllTabs']
class AllPanels:
class CAMJobPanel:
ID = "CAMJobPanel"
class IronSetup:
ID = "IronSetup"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronNcProgram:
ID = "IronNcProgram"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronFolder:
ID = "IronFolder"
Index = 2
isPromoted = False
isPromotedByDefault = False
class IronPattern:
ID = "IronPattern"
Index = 3
isPromoted = False
isPromotedByDefault = False
class IronStrategy_manual:
ID = "IronStrategy_manual"
Index = 4
isPromoted = False
isPromotedByDefault = False
class IronStrategy_probe:
ID = "IronStrategy_probe"
Index = 5
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_probe:
ID = "SeparatorAfter_IronStrategy_probe"
Index = 6
class MSFWmdCreateAggregationAssetWorkingModelCmd:
ID = "MSFWmdCreateAggregationAssetWorkingModelCmd"
Index = 7
isPromoted = False
isPromotedByDefault = False
class CAMInProcessStockPanel:
ID = "CAMInProcessStockPanel"
class IronAutomaticIPSGeneration:
ID = "IronAutomaticIPSGeneration"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMAdditiveJobPanel:
ID = "CAMAdditiveJobPanel"
class IronSetup:
ID = "IronSetup"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronAdditiveImportGCode:
ID = "IronAdditiveImportGCode"
Index = 1
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronAdditiveImportGCode:
ID = "SeparatorAfter_IronAdditiveImportGCode"
Index = 2
class MSFWmdCreateAggregationAssetWorkingModelCmd:
ID = "MSFWmdCreateAggregationAssetWorkingModelCmd"
Index = 3
isPromoted = True
isPromotedByDefault = True
class CAMAdditivePositioningPanel:
ID = "CAMAdditivePositioningPanel"
class CAMMoveComponentsCommand:
ID = "CAMMoveComponentsCommand"
Index = 0
isPromoted = True
isPromotedByDefault = True
class SeparatorAfter_CAMMoveComponentsCommand:
ID = "SeparatorAfter_CAMMoveComponentsCommand"
Index = 1
class IronMinimizeBoundingBox:
ID = "IronMinimizeBoundingBox"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronStrategy_additive_optimize_orientation:
ID = "IronStrategy_additive_optimize_orientation"
Index = 3
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_additive_optimize_orientation:
ID = "SeparatorAfter_IronStrategy_additive_optimize_orientation"
Index = 4
class IronPlaceOnPlatform:
ID = "IronPlaceOnPlatform"
Index = 5
isPromoted = True
isPromotedByDefault = True
class SeparatorAfter_IronPlaceOnPlatform:
ID = "SeparatorAfter_IronPlaceOnPlatform"
Index = 6
class CollisionDetectionCmd:
ID = "CollisionDetectionCmd"
Index = 7
isPromoted = False
isPromotedByDefault = False
class CAM2DPanel:
ID = "CAM2DPanel"
class IronStrategy_featureRecognition:
ID = "IronStrategy_featureRecognition"
Index = 0
isPromoted = False
isPromotedByDefault = False
class IronStrategy_contourFeatureFolder:
ID = "IronStrategy_contourFeatureFolder"
Index = 1
isPromoted = False
isPromotedByDefault = False
class IronStrategy_holeFeatureFolder:
ID = "IronStrategy_holeFeatureFolder"
Index = 2
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_holeFeatureFolder:
ID = "SeparatorAfter_IronStrategy_holeFeatureFolder"
Index = 3
class IronStrategy_adaptive2d:
ID = "IronStrategy_adaptive2d"
Index = 4
isPromoted = True
isPromotedByDefault = True
class IronStrategy_pocket2d:
ID = "IronStrategy_pocket2d"
Index = 5
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_pocket2d:
ID = "SeparatorAfter_IronStrategy_pocket2d"
Index = 6
class IronStrategy_face:
ID = "IronStrategy_face"
Index = 7
isPromoted = True
isPromotedByDefault = True
class IronStrategy_contour2d:
ID = "IronStrategy_contour2d"
Index = 8
isPromoted = True
isPromotedByDefault = True
class IronStrategy_slot:
ID = "IronStrategy_slot"
Index = 9
isPromoted = False
isPromotedByDefault = False
class IronStrategy_path3d:
ID = "IronStrategy_path3d"
Index = 10
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_path3d:
ID = "SeparatorAfter_IronStrategy_path3d"
Index = 11
class IronStrategy_thread:
ID = "IronStrategy_thread"
Index = 12
isPromoted = False
isPromotedByDefault = False
class IronStrategy_bore:
ID = "IronStrategy_bore"
Index = 13
isPromoted = False
isPromotedByDefault = False
class IronStrategy_circular:
ID = "IronStrategy_circular"
Index = 14
isPromoted = False
isPromotedByDefault = False
class IronStrategy_engrave:
ID = "IronStrategy_engrave"
Index = 15
isPromoted = False
isPromotedByDefault = False
class IronStrategy_chamfer2d:
ID = "IronStrategy_chamfer2d"
Index = 16
isPromoted = False
isPromotedByDefault = False
class CAMPanel:
ID = "CAM3DPanel"
class IronStrategy_adaptive:
ID = "IronStrategy_adaptive"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_pocket_new:
ID = "IronStrategy_pocket_new"
Index = 1
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_pocket_new:
ID = "SeparatorAfter_IronStrategy_pocket_new"
Index = 2
class IronStrategy_steep_and_shallow:
ID = "IronStrategy_steep_and_shallow"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronStrategy_flat:
ID = "IronStrategy_flat"
Index = 4
isPromoted = True
isPromotedByDefault = True
class IronStrategy_parallel_new:
ID = "IronStrategy_parallel_new"
Index = 5
isPromoted = True
isPromotedByDefault = True
class IronStrategy_scallop_new:
ID = "IronStrategy_scallop_new"
Index = 6
isPromoted = True
isPromotedByDefault = True
class IronStrategy_contour_new:
ID = "IronStrategy_contour_new"
Index = 7
isPromoted = True
isPromotedByDefault = True
class IronStrategy_ramp:
ID = "IronStrategy_ramp"
Index = 8
isPromoted = False
isPromotedByDefault = False
class IronStrategy_pencil_new:
ID = "IronStrategy_pencil_new"
Index = 9
isPromoted = False
isPromotedByDefault = False
class IronStrategy_horizontal_new:
ID = "IronStrategy_horizontal_new"
Index = 10
isPromoted = False
isPromotedByDefault = False
class IronStrategy_spiral_new:
ID = "IronStrategy_spiral_new"
Index = 11
isPromoted = False
isPromotedByDefault = False
class IronStrategy_radial_new:
ID = "IronStrategy_radial_new"
Index = 12
isPromoted = False
isPromotedByDefault = False
class IronStrategy_morphed_spiral:
ID = "IronStrategy_morphed_spiral"
Index = 13
isPromoted = False
isPromotedByDefault = False
class IronStrategy_project:
ID = "IronStrategy_project"
Index = 14
isPromoted = False
isPromotedByDefault = False
class IronStrategy_blend:
ID = "IronStrategy_blend"
Index = 15
isPromoted = False
isPromotedByDefault = False
class IronStrategy_morph:
ID = "IronStrategy_morph"
Index = 16
isPromoted = False
isPromotedByDefault = False
class IronStrategy_rest_finishing:
ID = "IronStrategy_rest_finishing"
Index = 17
isPromoted = False
isPromotedByDefault = False
class IronStrategy_flow:
ID = "IronStrategy_flow"
Index = 18
isPromoted = False
isPromotedByDefault = False
class CAMEditPanel:
ID = "CAMEditPanel"
class IronToolpathTrim:
ID = "IronToolpathTrim"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronToolpathEditDelete:
ID = "IronToolpathEditDelete"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronToolpathEditLeadsLinks:
ID = "IronToolpathEditLeadsLinks"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronToolpathEditToolChange:
ID = "IronToolpathEditToolChange"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronToolpathEditMoveStartPoints:
ID = "IronToolpathEditMoveStartPoints"
Index = 4
isPromoted = True
isPromotedByDefault = True
class CAMDrillingPanel:
ID = "CAMDrillingPanel"
class IronStrategy_drill:
ID = "IronStrategy_drill"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronHoleRecognition:
ID = "IronHoleRecognition"
Index = 1
isPromoted = True
isPromotedByDefault = True
class CAMMultiAxisPanel:
ID = "CAMMultiAxisPanel"
class IronStrategy_swarf5d:
ID = "IronStrategy_swarf5d"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_multiAxisContour:
ID = "IronStrategy_multiAxisContour"
Index = 1
isPromoted = False
isPromotedByDefault = False
class IronStrategy_rotary_finishing:
ID = "IronStrategy_rotary_finishing"
Index = 2
isPromoted = False
isPromotedByDefault = False
class CAMTurningPanel:
ID = "CAMTurningPanel"
class IronStrategy_turningFace:
ID = "IronStrategy_turningFace"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningProfileRoughing:
ID = "IronStrategy_turningProfileRoughing"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningProfileFinishing:
ID = "IronStrategy_turningProfileFinishing"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningRoughing:
ID = "IronStrategy_turningRoughing"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningAdaptiveRoughing:
ID = "IronStrategy_turningAdaptiveRoughing"
Index = 4
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningProfileGroove:
ID = "IronStrategy_turningProfileGroove"
Index = 5
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningGroove:
ID = "IronStrategy_turningGroove"
Index = 6
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningThread:
ID = "IronStrategy_turningThread"
Index = 7
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningChamfer:
ID = "IronStrategy_turningChamfer"
Index = 8
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningPart:
ID = "IronStrategy_turningPart"
Index = 9
isPromoted = True
isPromotedByDefault = True
class IronStrategy_turningSecondarySpindleGrab:
ID = "IronStrategy_turningSecondarySpindleGrab"
Index = 10
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningSecondarySpindlePull:
ID = "IronStrategy_turningSecondarySpindlePull"
Index = 11
isPromoted = False
isPromotedByDefault = False
class IronStrategy_turningSecondarySpindleReturn:
ID = "IronStrategy_turningSecondarySpindleReturn"
Index = 12
isPromoted = False
isPromotedByDefault = False
class CAMWLPCPanel:
ID = "CAMWLPCPanel"
class IronStrategy_jet2d:
ID = "IronStrategy_jet2d"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMInfillPanel:
ID = "CAMInfillPanel"
class IronFFFInfillCmd:
ID = "IronFFFInfillCmd"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMSupportsPanel:
ID = "CAMSupportsPanel"
class IronFFFSupportsCmd:
ID = "IronFFFSupportsCmd"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_areavolume_additive_support:
ID = "IronStrategy_areavolume_additive_support"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronStrategy_surroundvolumepolyline_additive_support:
ID = "IronStrategy_surroundvolumepolyline_additive_support"
Index = 2
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_surroundvolumepolyline_additive_support:
ID = "SeparatorAfter_IronStrategy_surroundvolumepolyline_additive_support"
Index = 3
class IronStrategy_areabar_additive_support:
ID = "IronStrategy_areabar_additive_support"
Index = 4
isPromoted = True
isPromotedByDefault = True
class IronStrategy_downoriented_additive_support:
ID = "IronStrategy_downoriented_additive_support"
Index = 5
isPromoted = False
isPromotedByDefault = False
class IronStrategy_lattice_additive_support:
ID = "IronStrategy_lattice_additive_support"
Index = 6
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_lattice_additive_support:
ID = "SeparatorAfter_IronStrategy_lattice_additive_support"
Index = 7
class IronStrategy_areapolyline_additive_support:
ID = "IronStrategy_areapolyline_additive_support"
Index = 8
isPromoted = False
isPromotedByDefault = False
class IronStrategy_edgepolyline_additive_support:
ID = "IronStrategy_edgepolyline_additive_support"
Index = 9
isPromoted = False
isPromotedByDefault = False
class IronStrategy_clustercontourpolyline_additive_support:
ID = "IronStrategy_clustercontourpolyline_additive_support"
Index = 10
isPromoted = False
isPromotedByDefault = False
class IronStrategy_skeletonpolyline_additive_support:
ID = "IronStrategy_skeletonpolyline_additive_support"
Index = 11
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronStrategy_skeletonpolyline_additive_support:
ID = "SeparatorAfter_IronStrategy_skeletonpolyline_additive_support"
Index = 12
class IronStrategy_baseplate_additive_support:
ID = "IronStrategy_baseplate_additive_support"
Index = 13
isPromoted = False
isPromotedByDefault = False
class CAMDEDPanel:
ID = "CAMDEDPanel"
class IronStrategy_feature_construction:
ID = "IronStrategy_feature_construction"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMAdditiveProcessSimPanel:
ID = "CAMAdditiveProcessSimPanel"
class IronAdditiveProcessSimulation:
ID = "IronAdditiveProcessSimulation"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronAdditiveProcessSimMesh:
ID = "IronAdditiveProcessSimMesh"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronAdditiveProcessSimPreCheck:
ID = "IronAdditiveProcessSimPreCheck"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronAdditiveProcessSimSolve:
ID = "IronAdditiveProcessSimSolve"
Index = 3
isPromoted = True
isPromotedByDefault = True
class SeparatorAfter_IronAdditiveProcessSimSolve:
ID = "SeparatorAfter_IronAdditiveProcessSimSolve"
Index = 4
class IronAdditiveMeshView:
ID = "IronAdditiveMeshView"
Index = 5
isPromoted = False
isPromotedByDefault = False
class IronAdditiveResultsView:
ID = "IronAdditiveResultsView"
Index = 6
isPromoted = False
isPromotedByDefault = False
class CAMAdditiveProcessSimResultsPanel:
ID = "CAMAdditiveProcessSimResultsPanel"
class IronAdditiveProcessSimToggleEdges:
ID = "IronAdditiveProcessSimToggleEdges"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronAdditiveProcessSimMinMaxProbe:
ID = "IronAdditiveProcessSimMinMaxProbe"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronAdditiveOpenResultsFolder:
ID = "IronAdditiveOpenResultsFolder"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronAdditiveProcessSimSolve:
ID = "IronAdditiveProcessSimSolve"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronAdditiveExportCompensated:
ID = "IronAdditiveExportCompensated"
Index = 4
isPromoted = True
isPromotedByDefault = True
class CAMAdditiveProcessSimActionPanel:
ID = "CAMAdditiveProcessSimActionPanel"
class IronAdditiveExportCompensatedSTL:
ID = "IronAdditiveExportCompensatedSTL"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMAdditiveProcessSimFinishPanel:
ID = "CAMAdditiveProcessSimFinishPanel"
class AdditiveResultsStop:
ID = "AdditiveResultsStop"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMProbingPanel:
ID = "CAMProbingPanel"
class IronStrategy_probe:
ID = "IronStrategy_probe"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_probe_geometry:
ID = "IronStrategy_probe_geometry"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronStrategy_inspectSurface:
ID = "IronStrategy_inspectSurface"
Index = 2
isPromoted = True
isPromotedByDefault = True
class PartAlignmentStart_Delayed:
ID = "PartAlignmentStart_Delayed"
Index = 3
isPromoted = False
isPromotedByDefault = False
class PartAlignmentStart_Live:
ID = "PartAlignmentStart_Live"
Index = 4
isPromoted = False
isPromotedByDefault = False
class CAMCMMPanel:
ID = "CAMCMMPanel"
class IronStrategy_cmm_inspection_setup:
ID = "IronStrategy_cmm_inspection_setup"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_datum:
ID = "IronStrategy_datum"
Index = 1
isPromoted = True
isPromotedByDefault = True
class MeasureSurface:
ID = "MeasureSurface"
Index = 2
isPromoted = True
isPromotedByDefault = True
class ScanSurface:
ID = "ScanSurface"
Index = 3
isPromoted = True
isPromotedByDefault = True
class CAMManualInspectionPanel:
ID = "CAMManualInspectionPanel"
class IronCreateInspections:
ID = "IronCreateInspections"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronRecordManualMeasure:
ID = "IronRecordManualMeasure"
Index = 1
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentEditPanel:
ID = "CAMPartAlignmentEditPanel"
class PartAlignment_EditAlignment:
ID = "PartAlignment_EditAlignment"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentInspectPanel:
ID = "CAMPartAlignmentInspectPanel"
class PartAlignment_IronStrategy_inspectSurface:
ID = "PartAlignment_IronStrategy_inspectSurface"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentPostPanel:
ID = "CAMPartAlignmentPostPanel"
class PartAlignment_IronNcProgram:
ID = "PartAlignment_IronNcProgram"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMLiveAlignmentPostPanel:
ID = "CAMLiveAlignmentPostPanel"
class PartAlignmentPostLive:
ID = "PartAlignmentPostLive"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentResultsPanel:
ID = "CAMPartAlignmentResultsPanel"
class PartAlignment_ImportResults:
ID = "PartAlignment_ImportResults"
Index = 0
isPromoted = True
isPromotedByDefault = True
class PartAlignment_IronPartAlignmentInfo:
ID = "PartAlignment_IronPartAlignmentInfo"
Index = 1
isPromoted = True
isPromotedByDefault = True
class PartAlignment_IronShowResults:
ID = "PartAlignment_IronShowResults"
Index = 2
isPromoted = True
isPromotedByDefault = True
class CAMLiveAlignmentResultsPanel:
ID = "CAMLiveAlignmentResultsPanel"
class LivePartAlignment:
ID = "LivePartAlignment"
Index = 0
isPromoted = True
isPromotedByDefault = True
class PartAlignment_IronPartAlignmentInfo:
ID = "PartAlignment_IronPartAlignmentInfo"
Index = 1
isPromoted = True
isPromotedByDefault = True
class PartAlignment_IronShowResults:
ID = "PartAlignment_IronShowResults"
Index = 2
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentPostAndExitPanel:
ID = "CAMPartAlignmentPostAndExitPanel"
class PartAlignmentPostStop:
ID = "PartAlignmentPostStop"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMPartAlignmentFinishPanel:
ID = "CAMPartAlignmentFinishPanel"
class PartAlignmentStop_Delayed:
ID = "PartAlignmentStop_Delayed"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMLiveAlignmentFinishPanel:
ID = "CAMLiveAlignmentFinishPanel"
class PartAlignmentStop_Live:
ID = "PartAlignmentStop_Live"
Index = 0
isPromoted = True
isPromotedByDefault = True
class CAMActionPanel:
ID = "CAMActionPanel"
class IronGenerateToolpath:
ID = "IronGenerateToolpath"
Index = 0
isPromoted = False
isPromotedByDefault = False
class IronSimulation:
ID = "IronSimulation"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronPostProcess:
ID = "IronPostProcess"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronSetupSheetSwitchboard:
ID = "IronSetupSheetSwitchboard"
Index = 3
isPromoted = True
isPromotedByDefault = True
class CAMProbingActionPanel:
ID = "CAMProbingActionPanel"
class IronGenerateToolpath:
ID = "IronGenerateToolpath"
Index = 0
isPromoted = False
isPromotedByDefault = False
class IronSimulation:
ID = "IronSimulation"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronPostProcess:
ID = "IronPostProcess"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronSetupSheetSwitchboard:
ID = "IronSetupSheetSwitchboard"
Index = 3
isPromoted = True
isPromotedByDefault = True
class ImportResults:
ID = "ImportResults"
Index = 4
isPromoted = False
isPromotedByDefault = False
class LiveProbing:
ID = "LiveProbing"
Index = 5
isPromoted = True
isPromotedByDefault = True
class IronInspectionReport:
ID = "IronInspectionReport"
Index = 6
isPromoted = False
isPromotedByDefault = False
class CAMAdditivePrintProfilePanel:
ID = "CAMAdditivePrintProfilePanel"
class SimplePrintSettingSelection:
ID = "SimplePrintSettingSelection"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronAdditiveEditPrintSetting:
ID = "IronAdditiveEditPrintSetting"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronAdditiveBuildStrategy:
ID = "IronAdditiveBuildStrategy"
Index = 2
isPromoted = True
isPromotedByDefault = True
class CAMAdditiveActionPanel:
ID = "CAMAdditiveActionPanel"
class IronGenerateToolpath:
ID = "IronGenerateToolpath"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronSimulation:
ID = "IronSimulation"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronAdditiveSimulation:
ID = "IronAdditiveSimulation"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronPostProcess:
ID = "IronPostProcess"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronAdditiveExportStrategy:
ID = "IronAdditiveExportStrategy"
Index = 4
isPromoted = True
isPromotedByDefault = True
class SeparatorAfter_IronAdditiveExportStrategy:
ID = "SeparatorAfter_IronAdditiveExportStrategy"
Index = 5
class IronAdditiveShowPrintStatistics:
ID = "IronAdditiveShowPrintStatistics"
Index = 6
isPromoted = False
isPromotedByDefault = False
class Iron3MFExport:
ID = "Iron3MFExport"
Index = 7
isPromoted = False
isPromotedByDefault = False
class IronFormlabsExport:
ID = "IronFormlabsExport"
Index = 8
isPromoted = True
isPromotedByDefault = True
class CAMInspectPanel:
ID = "CAMInspectPanel"
class MeasureCommand:
ID = "MeasureCommand"
Index = 0
isPromoted = True
isPromotedByDefault = True
class InterferenceCheckCommand:
ID = "InterferenceCheckCommand"
Index = 1
isPromoted = False
isPromotedByDefault = False
class FusionAccessibilityAnalysisCommand:
ID = "FusionAccessibilityAnalysisCommand"
Index = 2
isPromoted = False
isPromotedByDefault = False
class FusionMinimumRadiusAnalysisCommand:
ID = "FusionMinimumRadiusAnalysisCommand"
Index = 3
isPromoted = False
isPromotedByDefault = False
class FusionHalfSectionViewCommand:
ID = "FusionHalfSectionViewCommand"
Index = 4
isPromoted = False
isPromotedByDefault = False
class FusionZebraAnalysisCommand:
ID = "FusionZebraAnalysisCommand"
Index = 5
isPromoted = False
isPromotedByDefault = False
class CAMManagePanel:
ID = "CAMManagePanel"
class IronStrategy_create_form_mill:
ID = "IronStrategy_create_form_mill"
Index = 0
isPromoted = False
isPromotedByDefault = False
class IronToolLibrary:
ID = "IronToolLibrary"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronMachineLibrary:
ID = "IronMachineLibrary"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronPostLibrary:
ID = "IronPostLibrary"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronTemplateLibrary:
ID = "IronTemplateLibrary"
Index = 4
isPromoted = True
isPromotedByDefault = True
class IronSetupSheetConfigurations:
ID = "IronSetupSheetConfigurations"
Index = 5
isPromoted = False
isPromotedByDefault = False
class IronTaskManager:
ID = "IronTaskManager"
Index = 6
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronTaskManager:
ID = "SeparatorAfter_IronTaskManager"
Index = 7
class IronExportDefaults:
ID = "IronExportDefaults"
Index = 8
isPromoted = False
isPromotedByDefault = False
class IronImportDefaults:
ID = "IronImportDefaults"
Index = 9
isPromoted = False
isPromotedByDefault = False
class IronResetDefaults:
ID = "IronResetDefaults"
Index = 10
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronResetDefaults:
ID = "SeparatorAfter_IronResetDefaults"
Index = 11
class IronShowTemplateSelector:
ID = "IronShowTemplateSelector"
Index = 12
isPromoted = False
isPromotedByDefault = False
class IronTranslation:
ID = "IronTranslation"
Index = 13
isPromoted = False
isPromotedByDefault = False
class CAMAdditiveManagePanel:
ID = "CAMAdditiveManagePanel"
class IronMachineLibrary:
ID = "IronMachineLibrary"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronPostLibrary:
ID = "IronPostLibrary"
Index = 1
isPromoted = True
isPromotedByDefault = True
class IronTemplateLibrary:
ID = "IronTemplateLibrary"
Index = 2
isPromoted = True
isPromotedByDefault = True
class IronPrintSettingLibrary:
ID = "IronPrintSettingLibrary"
Index = 3
isPromoted = True
isPromotedByDefault = True
class IronTaskManager:
ID = "IronTaskManager"
Index = 4
isPromoted = True
isPromotedByDefault = True
class SeparatorAfter_IronTaskManager:
ID = "SeparatorAfter_IronTaskManager"
Index = 5
class IronExportDefaults:
ID = "IronExportDefaults"
Index = 6
isPromoted = False
isPromotedByDefault = False
class IronImportDefaults:
ID = "IronImportDefaults"
Index = 7
isPromoted = False
isPromotedByDefault = False
class IronResetDefaults:
ID = "IronResetDefaults"
Index = 8
isPromoted = False
isPromotedByDefault = False
class SeparatorAfter_IronResetDefaults:
ID = "SeparatorAfter_IronResetDefaults"
Index = 9
class IronShowTemplateSelector:
ID = "IronShowTemplateSelector"
Index = 10
isPromoted = False
isPromotedByDefault = False
class IronTranslation:
ID = "IronTranslation"
Index = 11
isPromoted = False
isPromotedByDefault = False
class CAMGeometryFeatures:
ID = "CAMGeometryFeatures"
class IronStrategy_geometry_contours:
ID = "IronStrategy_geometry_contours"
Index = 0
isPromoted = True
isPromotedByDefault = True
class IronStrategy_geometry_pockets: