-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeyboardShortcuts.xml
1789 lines (1789 loc) · 243 KB
/
KeyboardShortcuts.xml
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
<Shortcuts>
<ShortcutItem CommandName="Modify" CommandId="ID_BUTTON_SELECT" Shortcuts="MD" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Select links" CommandId="ID_TOGGLE_ALLOW_LINK_SELECTION" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Select underlay elements" CommandId="ID_TOGGLE_ALLOW_UNDERLAY_SELECTION" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Select pinned elements" CommandId="ID_TOGGLE_ALLOW_PINNED_SELECTION" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Select elements by face" CommandId="ID_TOGGLE_ALLOW_FACE_SELECTION" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Drag elements on selection" CommandId="ID_TOGGLE_ALLOW_DRAG_ON_SELECTION" Paths="Create>Select; Insert>Select; Annotate>Select; View>Select; Manage>Select; Add-Ins>Select; Modify>Select; Architecture>Select; Structure>Select; Steel>Select; Systems>Select; Analyze>Select; Massing & Site>Select; Collaborate>Select; Contextual Tabs>Select" />
<ShortcutItem CommandName="Type Properties" CommandId="ID_EDIT_TYPE" Shortcuts="ET" Paths="Create>Properties; Modify>Properties" />
<ShortcutItem CommandName="Properties" CommandId="ID_TOGGLE_PROPERTIES_PALETTE" Shortcuts="PP#Ctrl+1#VP" Paths="Create>Properties; View>Windows; Modify>Properties; Contextual Tabs>Properties" />
<ShortcutItem CommandName="Family Category and Parameters" CommandId="ID_OBJECTS_FAMILYHOST" Paths="Create>Properties; Modify>Properties" />
<ShortcutItem CommandName="Family Types" CommandId="ID_FAMILY_TYPE" Shortcuts="FT" Paths="Create>Properties; Modify>Properties" />
<ShortcutItem CommandName="Solid Extrusion" CommandId="ID_OBJECTS_EXTRUSION" Shortcuts="EX" Paths="Create>Forms" />
<ShortcutItem CommandName="Solid Blend" CommandId="ID_OBJECTS_BLEND" Paths="Create>Forms" />
<ShortcutItem CommandName="Solid Revolve" CommandId="ID_OBJECTS_REVOLUTION" Paths="Create>Forms" />
<ShortcutItem CommandName="Solid Sweep" CommandId="ID_OBJECTS_SWEEP" Paths="Create>Forms" />
<ShortcutItem CommandName="Solid Swept Blend" CommandId="ID_OBJECTS_SWEPTBLEND" Paths="Create>Forms" />
<ShortcutItem CommandName="Void Forms:Void Extrusion" CommandId="ID_OBJECTS_EXTRUSION_CUT" Paths="Create>Forms" />
<ShortcutItem CommandName="Void Forms:Void Blend" CommandId="ID_OBJECTS_BLEND_CUT" Paths="Create>Forms" />
<ShortcutItem CommandName="Void Forms:Void Revolve" CommandId="ID_OBJECTS_REVOLUTION_CUT" Paths="Create>Forms" />
<ShortcutItem CommandName="Void Forms:Void Sweep" CommandId="ID_OBJECTS_SWEEP_CUT" Paths="Create>Forms" />
<ShortcutItem CommandName="Void Forms:Void Swept Blend" CommandId="ID_OBJECTS_SWEPTBLEND_CUT" Paths="Create>Forms" />
<ShortcutItem CommandName="Model Line; Model Line; Boundary Line; Rebar Line" CommandId="ID_OBJECTS_CURVE" Shortcuts="LI" Paths="Create>Model; Create>Detail; Create>Draw; Modify>Draw; Contextual Tabs>Draw" />
<ShortcutItem CommandName="Place a Component" CommandId="ID_OBJECTS_FAMSYM" Shortcuts="CM" Paths="Create>Model; Architecture>Build; Structure>Model; Systems>Model" />
<ShortcutItem CommandName="Model Group:Place Model Group" CommandId="ID_OBJECTS_PLACE_GROUP" Paths="Create>Model; Architecture>Model; Structure>Model" />
<ShortcutItem CommandName="Model Group:Create Group; Detail Group:Create Group" CommandId="ID_EDIT_GROUP" Shortcuts="GP" Paths="Create>Model; Annotate>Detail; Modify>Create; Create>Detail; Architecture>Model; Structure>Model" />
<ShortcutItem CommandName="Model Text" CommandId="ID_OBJECTS_MODELTEXT" Paths="Create>Model; Architecture>Model; Structure>Model" />
<ShortcutItem CommandName="Opening" CommandId="ID_OBJECTS_OPENING" Paths="Create>Model" />
<ShortcutItem CommandName="Control" CommandId="ID_OBJECTS_CONTROL" Paths="Create>Control" />
<ShortcutItem CommandName="Electrical Connector; Electrical Connector" CommandId="ID_RBS_ADD_ELECTRICAL_CONNECTOR" Paths="Create>Connectors" />
<ShortcutItem CommandName="Duct Connector; Duct Connector" CommandId="ID_RBS_ADD_DUCT_CONNECTOR" Paths="Create>Connectors" />
<ShortcutItem CommandName="Pipe Connector; Pipe Connector" CommandId="ID_RBS_ADD_PIPE_CONNECTOR" Paths="Create>Connectors" />
<ShortcutItem CommandName="Cable Tray Connector; Cable Tray Connector" CommandId="ID_RBS_ADD_CABLETRAY_CONNECTOR" Paths="Create>Connectors" />
<ShortcutItem CommandName="Conduit Connector; Conduit Connector" CommandId="ID_RBS_ADD_CONDUIT_CONNECTOR" Paths="Create>Connectors" />
<ShortcutItem CommandName="Reference Line; Reference Line" CommandId="ID_OBJECTS_REFERENCE_CURVE" Paths="Create>Datum; Create>Draw; Modify>Draw" />
<ShortcutItem CommandName="Reference Plane; Reference Plane" CommandId="ID_OBJECTS_CLINE" Shortcuts="RP" Paths="Create>Datum; Create>Draw; Modify>Draw; Architecture>Work Plane; Structure>Work Plane; Steel>Work Plane; Systems>Work Plane; Analyze>Work Plane; Contextual Tabs>Work Plane" />
<ShortcutItem CommandName="Set; Set Work Plane" CommandId="ID_SKETCH_PLANE_TOOL" Paths="Create>Work Plane; Modify>Work Plane; Architecture>Work Plane; Structure>Work Plane; Steel>Work Plane; Systems>Work Plane; Analyze>Work Plane; Contextual Tabs>Work Plane" />
<ShortcutItem CommandName="Set:Pick a Plane; Edit Work Plane:Pick a Plane" CommandId="ID_PICK_WORKPLANE" Shortcuts="PK" Paths="Create>Work Plane; Modify>Work Plane; Architecture>Work Plane; Structure>Work Plane; Steel>Work Plane; Systems>Work Plane; Analyze>Work Plane; Contextual Tabs>Work Plane; " />
<ShortcutItem CommandName="Show Work Plane" CommandId="ID_SKETCH_GRID_VIS" Paths="Create>Work Plane; Modify>Work Plane; Architecture>Work Plane; Structure>Work Plane; Steel>Work Plane; Systems>Work Plane; Analyze>Work Plane; Contextual Tabs>Work Plane" />
<ShortcutItem CommandName="Workplane Viewer" CommandId="ID_WORKPLANE_VIEW" Paths="Create>Work Plane; Modify>Work Plane; Architecture>Work Plane; Structure>Work Plane; Steel>Work Plane; Systems>Work Plane; Analyze>Work Plane; Contextual Tabs>Work Plane" />
<ShortcutItem CommandName="Link Revit" CommandId="ID_RVTDOC_LINK" Paths="Insert>Link" />
<ShortcutItem CommandName="Link IFC" CommandId="ID_IFC_LINK" Paths="Insert>Link" />
<ShortcutItem CommandName="Link CAD" CommandId="ID_FILE_CADFORMAT_LINK" Paths="Insert>Link" />
<ShortcutItem CommandName="Link Topography" CommandId="ID_TOPOGRAPHY_LINK" Paths="Insert>Link" />
<ShortcutItem CommandName="DWF Markup" CommandId="ID_MARKUPS_LOAD" Paths="Insert>Link" />
<ShortcutItem CommandName="Decal; Place Decal" CommandId="ID_RM_CREATE_DECAL" Paths="Insert>Link" />
<ShortcutItem CommandName="Decal:Decal Types; Decal Types" CommandId="ID_SETTINGS_DECAL_TYPES" Paths="Insert>Link; Manage>Manage Project" />
<ShortcutItem CommandName="Point Cloud" CommandId="ID_POINT_CLOUD" Paths="Insert>Link" />
<ShortcutItem CommandName="Coordination Model:Local" CommandId="ID_COORDINATIONMODEL_ADD_LOCAL" Paths="Insert>Link; Contextual Tabs>Coordination Model" />
<ShortcutItem CommandName="Coordination Model:Autodesk Docs" CommandId="ID_COORDINATIONMODEL_ADD_AUTODESKDOCS" Paths="Insert>Link; Contextual Tabs>Coordination Model" />
<ShortcutItem CommandName="Link PDF" CommandId="ID_LINK_PDF" Paths="Insert>Link" />
<ShortcutItem CommandName="Link Image" CommandId="ID_LINK_IMAGE" Paths="Insert>Link" />
<ShortcutItem CommandName="Manage Links" CommandId="ID_LINKED_DWG" Shortcuts="ML" Paths="Insert>Link; Manage>Manage Project; Contextual Tabs>Image; Contextual Tabs>Coordination; Contextual Tabs>Link" />
<ShortcutItem CommandName="Import CAD" CommandId="ID_FILE_IMPORT" Paths="Insert>Import" />
<ShortcutItem CommandName="Import gbXML" CommandId="ID_ABS_IMPORT_GBXML" Paths="Insert>Import" />
<ShortcutItem CommandName="Import PDF" CommandId="ID_OBJECTS_RASTER_PDF" Paths="Insert>Import" />
<ShortcutItem CommandName="Import Image" CommandId="ID_OBJECTS_RASTER" Paths="Insert>Import" />
<ShortcutItem CommandName="Manage Images" CommandId="ID_EDIT_RASTER_SYMBOLS" Paths="Insert>Import; Manage>Manage Project" />
<ShortcutItem CommandName="Import Family Types" CommandId="ID_IMPORT_FAM_TYPES" Paths="Insert>Import" />
<ShortcutItem CommandName="Load Family; Load Framing Family; Load Shapes" CommandId="ID_FAMILY_LOAD" Paths="Insert>Load from Library; Contextual Tabs>Mode; Contextual Tabs>Family" />
<ShortcutItem CommandName="Load Autodesk Family" CommandId="ID_FAMILY_LOAD_CLOUD" Paths="Insert>Load from Library" />
<ShortcutItem CommandName="Load as Group" CommandId="ID_LOAD_GROUP" Paths="Insert>Load from Library" />
<ShortcutItem CommandName="Insert from File:Insert Views from File" CommandId="ID_INSERT_VIEWS_FROM_FILE" Paths="Insert>Load from Library" />
<ShortcutItem CommandName="Insert from File:Insert 2D Elements from File" CommandId="ID_INSERT_2D_ELEMENTS_FROM_FILE" Paths="Insert>Load from Library" />
<ShortcutItem CommandName="Aligned Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_ALIGNED" Shortcuts="DI" Paths="Annotate>Dimension; Modify>Measure; Create>Dimension; Contextual Tabs>Dimension; Quick Access Toolbar" />
<ShortcutItem CommandName="Angular Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_ANGULAR" Paths="Annotate>Dimension; Modify>Measure; Create>Dimension; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Radial Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_RADIAL" Paths="Annotate>Dimension; Modify>Measure; Create>Dimension; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Diameter Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_DIAMETER" Paths="Annotate>Dimension; Modify>Measure; Create>Dimension; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Arc Length Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_ARCLENGTH" Paths="Annotate>Dimension; Modify>Measure; Create>Dimension; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Linear Dimension Types" CommandId="ID_SETTINGS_DIMENSIONS_LINEAR" Paths="Annotate>Dimension; Create>Dimension" />
<ShortcutItem CommandName="Angular Dimension Types" CommandId="ID_SETTINGS_DIMENSIONS_ANGULAR" Paths="Annotate>Dimension; Create>Dimension" />
<ShortcutItem CommandName="Radial Dimension Types" CommandId="ID_SETTINGS_DIMENSIONS_RADIAL" Paths="Annotate>Dimension; Create>Dimension" />
<ShortcutItem CommandName="Diameter Dimension Types" CommandId="ID_SETTINGS_DIMENSIONS_DIAMETER" Paths="Annotate>Dimension; Create>Dimension" />
<ShortcutItem CommandName="Symbolic Line" CommandId="ID_OBJECTS_VIEW_DIR_SPEC_CURVE" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Detail Component; Detail Component" CommandId="ID_OBJECTS_FAMDETAIL" Shortcuts="DC" Paths="Annotate>Detail; Create>Detail" />
<ShortcutItem CommandName="Detail Group:Place Detail Group" CommandId="ID_OBJECTS_PLACE_DETAIL_GROUP" Paths="Annotate>Detail; Create>Detail" />
<ShortcutItem CommandName="Symbol" CommandId="ID_OBJECTS_FAM_ANN_INST" Paths="Annotate>Detail; Create>Detail; Annotate>Symbol" />
<ShortcutItem CommandName="Masking Region; Masking Region" CommandId="ID_MASKING_REGION" Paths="Annotate>Detail; Create>Detail" />
<ShortcutItem CommandName="Filled Region; Filled Region" CommandId="ID_OBJECTS_FILLED_REGION" Shortcuts="FI" Paths="Annotate>Detail; Create>Detail" />
<ShortcutItem CommandName="Text" CommandId="ID_OBJECTS_TEXT_NOTE" Shortcuts="TX" Paths="Annotate>Text; Create>Text; Quick Access Toolbar" />
<ShortcutItem CommandName="Check Spelling" CommandId="ID_CHECK_SPELLING" Paths="Annotate>Text; Create>Text; Contextual Tabs>Text" />
<ShortcutItem CommandName="Find/ Replace" CommandId="ID_FIND_REPLACE" Shortcuts="FR" Paths="Annotate>Text; Create>Text; Contextual Tabs>Text" />
<ShortcutItem CommandName="Visibility/ Graphics" CommandId="ID_VIEW_CATEGORY_VISIBILITY" Shortcuts="VG#VV" Paths="View>Graphics" />
<ShortcutItem CommandName="Thin Lines; Thin Lines" CommandId="ID_THIN_LINES" Shortcuts="TL" Paths="View>Graphics; Quick Access Toolbar" />
<ShortcutItem CommandName="3D View; Default 3D View" CommandId="ID_VIEW_DEFAULT_3DVIEW" Shortcuts="Fn3" Paths="View>Create; Quick Access Toolbar" />
<ShortcutItem CommandName="3D View:Camera; Default 3D View:Camera" CommandId="ID_VIEW_NEW_3DVIEW" Paths="View>Create; Quick Access Toolbar" />
<ShortcutItem CommandName="3D View:Walkthrough; Default 3D View:Walkthrough" CommandId="ID_VIEW_NEW_WALKTHROUGH" Paths="View>Create; Quick Access Toolbar" />
<ShortcutItem CommandName="Section" CommandId="ID_VIEW_NEW_SECTION" Paths="View>Create; Quick Access Toolbar" />
<ShortcutItem CommandName="Plan Region; Plan Views:Plan Region" CommandId="ID_NEW_PLAN_REGION" Paths="View>Create" />
<ShortcutItem CommandName="Plan Views:Floor Plan; Floor Plan" CommandId="ID_VIEW_NEW_PLAN" Paths="View>Create" />
<ShortcutItem CommandName="Plan Views:Reflected Ceiling Plan" CommandId="ID_VIEW_NEW_RCP" Paths="View>Create" />
<ShortcutItem CommandName="Plan Views:Structural Plan; Structural Plan" CommandId="ID_VIEW_NEW_STRUCTURAL_PLAN" Paths="View>Create" />
<ShortcutItem CommandName="Plan Views:Area Plan; Area:Area Plan" CommandId="ID_VIEW_NEW_AREASCHEME" Paths="View>Create; Architecture>Room & Area" />
<ShortcutItem CommandName="Elevation; Elevation:Framing Elevation" CommandId="ID_BUTTON_BRACING_ELEVATION" Paths="View>Create" />
<ShortcutItem CommandName="Elevation:Building Elevation" CommandId="ID_BUTTON_INTERIOR_ROOM_ELEVATION" Paths="View>Create" />
<ShortcutItem CommandName="Duplicate View:Duplicate View" CommandId="ID_PRJBROWSER_COPY" Paths="View>Create" />
<ShortcutItem CommandName="Duplicate View:Duplicate with Detailing" CommandId="ID_DUPLICATE_WITH_DETAILING" Paths="View>Create" />
<ShortcutItem CommandName="Duplicate View:Duplicate as Dependent" CommandId="ID_CREATE_DEPENDENT_VIEW" Paths="View>Create" />
<ShortcutItem CommandName="Legends:Legend" CommandId="ID_VIEW_NEW_LEGEND" Paths="View>Create" />
<ShortcutItem CommandName="Legends:Keynote Legend" CommandId="ID_VIEW_NEW_KEYNOTE_LEGEND" Paths="View>Create" />
<ShortcutItem CommandName="Schedules:Schedule/Quantities; Schedule/ Quantities" CommandId="ID_VIEW_NEW_SCHEDULE" Paths="View>Create; Analyze>Reports & Schedules" />
<ShortcutItem CommandName="Schedules:Graphical Column Schedule" CommandId="ID_VIEW_NEW_GRAPH_SCHED_COLUMN" Paths="View>Create" />
<ShortcutItem CommandName="Schedules:Material Takeoff" CommandId="ID_VIEW_NEW_MATERIAL_TAKEOFF" Paths="View>Create" />
<ShortcutItem CommandName="Schedules:Sheet List" CommandId="ID_VIEW_NEW_DRAWING_LIST" Paths="View>Create" />
<ShortcutItem CommandName="Schedules:Note Block" CommandId="ID_VIEW_NEW_NOTE_BLOCK" Paths="View>Create" />
<ShortcutItem CommandName="Schedules:View List" CommandId="ID_NEW_VIEWLIST" Paths="View>Create" />
<ShortcutItem CommandName="Close Inactive Views" CommandId="ID_VIEW_CLOSE_INACTIVE" Paths="View>Windows; Quick Access Toolbar" />
<ShortcutItem CommandName="Tab Views" CommandId="ID_VIEW_TAB" Shortcuts="TW" Paths="View>Windows" />
<ShortcutItem CommandName="Tile Views" CommandId="ID_WINDOW_TILE_VERT" Paths="View>Windows" />
<ShortcutItem CommandName="ViewCube" CommandId="ID_SHOW_VIEWCUBE" Paths="View>Windows" />
<ShortcutItem CommandName="Navigation Bar" CommandId="ID_NAVIGATION_BAR" Paths="View>Windows" />
<ShortcutItem CommandName="Project Browser" CommandId="ID_VIEW_PROJECTEXPLORER" Shortcuts="BB" Paths="View>Windows" />
<ShortcutItem CommandName="System Browser" CommandId="ID_RBS_SYSTEM_NAVIGATOR" Shortcuts="Fn9" Paths="View>Windows" />
<ShortcutItem CommandName="MEP Fabrication Parts; Fabrication Part" CommandId="ID_TOGGLE_FABPART_BROWSER" Shortcuts="PB" Paths="View>Windows; Systems>Fabrication" />
<ShortcutItem CommandName="P&ID Modeler" CommandId="ID_MEP_TOGGLE_PNID_BROWSER" Paths="View>Windows" />
<ShortcutItem CommandName="Status Bar" CommandId="ID_VIEW_STATUS_BAR" Paths="View>Windows" />
<ShortcutItem CommandName="Status Bar - Worksets" CommandId="ID_STATUSBAR_WORKSETS" Paths="View>Windows" />
<ShortcutItem CommandName="Status Bar - Design Options" CommandId="ID_STATUSBAR_DESIGNOPTIONS" Paths="View>Windows" />
<ShortcutItem CommandName="Browser Organization" CommandId="ID_BROWSER_ORGANIZATION" Paths="View>Windows" />
<ShortcutItem CommandName="Keyboard Shortcuts" CommandId="ID_KEYBOARD_SHORTCUT_DIALOG" Shortcuts="KS" Paths="View>Windows" />
<ShortcutItem CommandName="Canvas Theme" CommandId="ID_CANVAS_THEME_SWITCH" Shortcuts="CA" Paths="View>Windows" />
<ShortcutItem CommandName="Materials" CommandId="ID_SETTINGS_MATERIALS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Object Styles" CommandId="ID_SETTINGS_OBJECTSTYLES" Paths="Manage>Settings" />
<ShortcutItem CommandName="Snaps" CommandId="ID_SETTINGS_SNAPPING" Paths="Manage>Settings" />
<ShortcutItem CommandName="Parameters Service" CommandId="ID_SETTINGS_FORGE_PARAMETERS" Shortcuts="PM" Paths="Manage>Settings" />
<ShortcutItem CommandName="Shared Parameters" CommandId="ID_FILE_EXTERNAL_PARAMETERS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Transfer Project Standards" CommandId="ID_TRANSFER_PROJECT_STANDARDS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Purge Unused" CommandId="ID_PURGE_UNUSED" Paths="Manage>Settings" />
<ShortcutItem CommandName="Project Units" CommandId="ID_SETTINGS_UNITS" Shortcuts="UN" Paths="Manage>Settings" />
<ShortcutItem CommandName="Structural Settings:Structural Settings" CommandId="ID_STRUCTURAL_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Structural Settings:Connection Settings" CommandId="ID_STRUCTURAL_CONNECTION_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Load Classifications" CommandId="ID_RBS_ELECTRICAL_LOAD_CLASSIFICATION" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Demand Factors" CommandId="ID_RBS_ELECTRICAL_DEMAND_FACTOR" Paths="Manage>Settings" />
<ShortcutItem CommandName="Panel Schedule Templates:Manage Templates" CommandId="ID_RBS_PANEL_SCHEDULE_MANAGE_TEMPLATES" Paths="Manage>Settings" />
<ShortcutItem CommandName="Panel Schedule Templates:Edit a Template" CommandId="ID_RBS_PANEL_SCHEDULE_EDIT_A_TEMPLATE" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Line Styles" CommandId="ID_SETTINGS_LINE_STYLES" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Line Weights" CommandId="ID_SETTINGS_PENS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Line Patterns" CommandId="ID_SETTINGS_PEN_FONTS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Fill Patterns" CommandId="ID_SETTINGS_FILLPATTERNS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Arrowheads" CommandId="ID_SETTINGS_ANNOTATIONS_LEADERS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Temporary Dimensions" CommandId="ID_SETTINGS_DIMENSIONS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Section Tags" CommandId="ID_VIEWTAGSTYLES_SECTIONTAGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Keynoting Settings" CommandId="ID_SETTINGS_KEYNOTING" Shortcuts="KK" Paths="Manage>Settings; Annotate>Tag" />
<ShortcutItem CommandName="Additional Settings:Analysis Display Styles" CommandId="ID_SETTINGS_ANALYSIS_DISPLAY_STYLES" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Detail Level" CommandId="ID_DETAIL_LEVEL" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Assembly Code" CommandId="ID_SETTINGS_ASSEMBLY_CODE" Paths="Manage>Settings" />
<ShortcutItem CommandName="Starting View" CommandId="ID_STARTING_VIEW" Paths="Manage>Manage Project" />
<ShortcutItem CommandName="IDs of Selection" CommandId="ID_IDS_OF_SELECTION" Shortcuts="ID" Paths="Manage>Inquiry" />
<ShortcutItem CommandName="Select by ID" CommandId="ID_SELECT_BY_ID" Paths="Manage>Inquiry" />
<ShortcutItem CommandName="Review Warnings" CommandId="ID_REVIEW_WARNINGS" Paths="Manage>Inquiry" />
<ShortcutItem CommandName="Macro Manager" CommandId="ID_TOOLS_MACROS" Paths="Manage>Macros" />
<ShortcutItem CommandName="Macro Security" CommandId="ID_TOOLS_MACROSECURITY" Paths="Manage>Macros" />
<ShortcutItem CommandName="Dynamo" CommandId="ID_VISUAL_PROGRAMMING_DYNAMO" Paths="Manage>Visual Programming" />
<ShortcutItem CommandName="Dynamo Player" CommandId="ID_PLAYLIST_DYNAMO" Paths="Manage>Visual Programming" />
<ShortcutItem CommandName="External Tools:SwitchToLastView" CommandId="e19b084b-4a63-10af-a876-ec308252335e" Shortcuts="WE" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SwitchViewByHistory" CommandId="e19b084b-4a63-94af-a876-ec308252335e" Shortcuts="WR" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SwitchView" CommandId="e19b084b-4a63-84af-a876-ec308252335e" Shortcuts="WW" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:CloseCurrentView" CommandId="e19b494b-4a63-44af-a876-ec308252335e" Shortcuts="WQ" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:CloseViews" CommandId="e19b494b-4a63-47af-a876-ec308252335e" Shortcuts="WC" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:FamilyReferences" CommandId="e19b494b-4a63-45af-a876-ec308252335e" Shortcuts="FV" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:CopyStructuralFoundationsFromLinkedModel" CommandId="e39b494b-4a63-45af-a876-ec308252335e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:CutGeometryWithGroup" CommandId="e39b494b-4a63-45af-a876-ec308252535e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SynchronizeViews" CommandId="e39b494b-4a63-45af-b876-ec308252535e" Shortcuts="AA" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SelectAllElementsInView" CommandId="e39b494b-4a63-45af-b876-ec508252535e" Shortcuts="Ctrl+A" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SelectAllElementsInViewAndInGroups" CommandId="e39b494b-4a63-45af-b876-ec50875257be" Shortcuts="Ctrl+Alt+A" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SelectCategoriesInProject" CommandId="e39b499b-4a63-45af-b876-ea508752535e" Shortcuts="SCA" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SelectCategoriesInView" CommandId="e39b494b-4a63-45af-b876-ea508752535e" Shortcuts="SCV" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ToggleLevels2D" CommandId="e39b494b-4a63-45af-b876-ec508752535e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:OpenViews" CommandId="e39b494b-4a63-45af-b876-ec508752575e" Shortcuts="WO" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ExportViewTemplatesToRvt" CommandId="e39b494b-4a63-45af-b876-ec508752578e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ListSelectedElements" CommandId="e39b494b-4a63-451f-b876-ec508752578e" Shortcuts="ES" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ListAllElementsInView" CommandId="e39b494b-4a63-45af-b879-ec508752578e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ListAllElementsInViewWithParameters" CommandId="e39b494b-4a63-45af-b879-ec509752578e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ListSelectedElementsWithParameters" CommandId="e39b494b-4a63-451f-b876-ec508752578f" Shortcuts="EP" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ListSelectedElementsWithParametersSpanAllScreens" CommandId="e39b494b-4a63-45af-b871-ec508752578e" Shortcuts="EA" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:SelectLinkedModels" CommandId="e39b494b-4a63-45af-b879-ec5a8752578e" Shortcuts="SEL" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:ZoomSelected" CommandId="e39b4b4b-4a63-45af-b879-ec5a8752578e" Shortcuts="ZS" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:InvokeAddinCommand" CommandId="e39b4b4b-4a63-48af-b879-ec5a8752578e" Shortcuts="Q`" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:InvokeRevitCommand" CommandId="e39b4b4b-4a67-48af-b879-ec5a8752578e" Shortcuts="`" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:InvokeLastAddinCommand" CommandId="e39b4b4b-4a67-48af-b879-ec5a9752578e" Shortcuts="QQ`" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:OpenSheet" CommandId="e39b4b4b-4a68-48af-b879-ec5a9752578e" Paths="Add-Ins>External" />
<ShortcutItem CommandName="External Tools:NewFamily" CommandId="e38b4b7b-4a67-49af-b819-ecaa9752578e" Shortcuts="NF" Paths="Add-Ins>External" />
<ShortcutItem CommandName="Align Left" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignLeftButton" Shortcuts="XX" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Align Center" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignCenterButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Align Right" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignRightButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Align Top" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignTopButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Align Middle" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignMiddleButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Align Bottom" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%alignBottomButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="DistributeHorizontally" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%distributeHorizontallyButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="DistributeVertically" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%distributeVerticallyButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="ArrangeTags" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%ArrangeButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="UntangleVertically" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%UntangleVerticallyButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="UntangleHorizontally" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%Align%UntangleHorizontallyButton" Paths="Add-Ins>Align" />
<ShortcutItem CommandName="Transmit model(s)" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%eTransmit%eTransmit" Paths="Add-Ins>eTransmit" />
<ShortcutItem CommandName="Help" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%eTransmit%eTransmitHelp" Paths="Add-Ins>eTransmit" />
<ShortcutItem CommandName="About" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%eTransmit%eTransmitAbout" Paths="Add-Ins>eTransmit" />
<ShortcutItem CommandName="Convert RFAto FormIt" CommandId="CustomCtrl_%CustomCtrl_%Add-Ins%FormIt Converter%Convert RFA to FormIt" Paths="Add-Ins>FormIt Converter" />
<ShortcutItem CommandName="RevitLookup:Dashboard" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.DashboardCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Selection" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopSelectionCommand" Shortcuts="LS" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Active view" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopViewCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Document" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopDocumentCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Database" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopDatabaseCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Face" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopFaceCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Edge" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopEdgeCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Point" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopPointCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Snoop Linked element" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SnoopLinkedElementCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Search Elements" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.SearchElementsCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="RevitLookup:Event monitor" CommandId="CustomCtrl_%CustomCtrl_%CustomCtrl_%Add-Ins%Revit Lookup%RevitLookupButton%RevitLookup.Commands.EventMonitorCommand" Paths="Add-Ins>Revit Lookup" />
<ShortcutItem CommandName="BIMLink" CommandId="CustomCtrl_%CustomCtrl_%Ideate Software%Ideate Software%BIMLink" Paths="Ideate Software>Ideate Software" />
<ShortcutItem CommandName="Xporter" CommandId="CustomCtrl_%CustomCtrl_%RTV Tools%RTV Xporter%Xporter" Paths="RTV Tools>" />
<ShortcutItem CommandName="Current" CommandId="CustomCtrl_%CustomCtrl_%RTV Tools%RTV Xporter Export Shortcuts%Current" Paths="RTV Tools>Export Shortcuts" />
<ShortcutItem CommandName="Sheets" CommandId="CustomCtrl_%CustomCtrl_%RTV Tools%RTV Xporter Export Shortcuts%Sheets" Paths="RTV Tools>Export Shortcuts" />
<ShortcutItem CommandName="Views" CommandId="CustomCtrl_%CustomCtrl_%RTV Tools%RTV Xporter Export Shortcuts%Views" Paths="RTV Tools>Export Shortcuts" />
<ShortcutItem CommandName="Paste; Paste from Clipboard" CommandId="ID_EDIT_PASTE" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paste:Aligned to Selected Levels" CommandId="ID_EDIT_PASTE_ALIGNED_LEVEL_BY_NAME" Shortcuts="VL" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paste:Aligned to Selected Views" CommandId="ID_EDIT_PASTE_ALIGNED_VIEWS_BY_NAME" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paste:Aligned to Current View" CommandId="ID_EDIT_PASTE_ALIGNED" Shortcuts="Ctrl+Shift+V" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paste:Aligned to Same Place" CommandId="ID_EDIT_PASTE_ALIGNED_SAME_PLACE" Shortcuts="Ctrl+Shift+Alt+V" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paste:Aligned to Picked Level" CommandId="ID_EDIT_PASTE_ALIGNED_PICK_LEVEL" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Cut to Clipboard" CommandId="ID_EDIT_CUT" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Copy to Clipboard" CommandId="ID_EDIT_COPY" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Match Type Properties" CommandId="ID_EDIT_MATCH_TYPE" Shortcuts="MA" Paths="Modify>Clipboard" />
<ShortcutItem CommandName="Paint" CommandId="ID_EDIT_PAINT" Shortcuts="PT" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Paint:Remove Paint" CommandId="ID_EDIT_UNPAINT" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Notch; Apply Notching" CommandId="ID_COPING" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Notch:Remove Notching" CommandId="ID_UNCOPING" Shortcuts="RC" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Cut; Cut Geometry" CommandId="ID_CUT_HOST" Shortcuts="CU" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Cut:Uncut Geometry" CommandId="ID_UNCUT_HOST" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Join; Join Geometry" CommandId="ID_JOIN_ELEMENTS_EDITOR" Shortcuts="JO" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Join:Unjoin Geometry" CommandId="ID_UNJOIN_ELEMENTS_EDITOR" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Split Face" CommandId="ID_SPLIT_FACE" Shortcuts="SF" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Activate Controls and Dimensions" CommandId="ID_TOGGLE_ACTIVATE_CONTROLS" Shortcuts="AC" Paths="Modify>Controls; Quick Access Toolbar" />
<ShortcutItem CommandName="Align" CommandId="ID_ALIGN" Shortcuts="AL" Paths="Modify>Modify" />
<ShortcutItem CommandName="Move" CommandId="ID_EDIT_MOVE" Shortcuts="MV" Paths="Modify>Modify" />
<ShortcutItem CommandName="Offset" CommandId="ID_OFFSET" Shortcuts="OF" Paths="Modify>Modify" />
<ShortcutItem CommandName="Copy" CommandId="ID_EDIT_MOVE_COPY" Shortcuts="CO#CC" Paths="Modify>Modify" />
<ShortcutItem CommandName="Mirror - Pick Axis" CommandId="ID_EDIT_MIRROR" Shortcuts="MM" Paths="Modify>Modify" />
<ShortcutItem CommandName="Rotate" CommandId="ID_EDIT_ROTATE" Shortcuts="RO" Paths="Modify>Modify" />
<ShortcutItem CommandName="Mirror - Draw Axis" CommandId="ID_EDIT_MIRROR_LINE" Shortcuts="DM" Paths="Modify>Modify" />
<ShortcutItem CommandName="Trim/Extend to Corner" CommandId="ID_TRIM_EXTEND_CORNER" Shortcuts="TR" Paths="Modify>Modify" />
<ShortcutItem CommandName="Split Element" CommandId="ID_SPLIT" Shortcuts="SL" Paths="Modify>Modify" />
<ShortcutItem CommandName="Array" CommandId="ID_EDIT_CREATE_PATTERN" Shortcuts="AR" Paths="Modify>Modify" />
<ShortcutItem CommandName="Trim/Extend Single Element" CommandId="ID_TRIM_EXTEND_SINGLE" Shortcuts="TT" Paths="Modify>Modify" />
<ShortcutItem CommandName="Split with Gap" CommandId="ID_SPLIT_WITH_GAP" Paths="Modify>Modify" />
<ShortcutItem CommandName="Scale" CommandId="ID_EDIT_SCALE" Shortcuts="RE" Paths="Modify>Modify" />
<ShortcutItem CommandName="Trim/Extend Multiple Elements" CommandId="ID_TRIM_EXTEND_MULTIPLE" Paths="Modify>Modify" />
<ShortcutItem CommandName="Unpin" CommandId="ID_UNLOCK_ELEMENTS" Shortcuts="UP" Paths="Modify>Modify" />
<ShortcutItem CommandName="Pin" CommandId="ID_LOCK_ELEMENTS" Shortcuts="PN" Paths="Modify>Modify" />
<ShortcutItem CommandName="Delete" CommandId="ID_BUTTON_DELETE" Shortcuts="DE" Paths="Modify>Modify" />
<ShortcutItem CommandName="Measure:Measure Between Two References" CommandId="ID_MEASURE_LINE" Paths="Modify>Measure; Quick Access Toolbar" />
<ShortcutItem CommandName="Measure:Measure Along an Element" CommandId="ID_MEASURE_PICK_LINES" Paths="Modify>Measure; Quick Access Toolbar" />
<ShortcutItem CommandName="Create Similar" CommandId="ID_EDIT_CREATE_SIMILAR" Shortcuts="CS" Paths="Modify>Create" />
<ShortcutItem CommandName="Load into Project; Model Group:Load as Group into Open Projects" CommandId="ID_LOAD_INTO_PROJECTS" Paths="Family Editor>Family Editor; Architecture>Model; Structure>Model" />
<ShortcutItem CommandName="Load into Project and Close" CommandId="ID_LOAD_INTO_PROJECTS_CLOSE" Shortcuts="FS" Paths="Family Editor>Family Editor" />
<ShortcutItem CommandName="Label" CommandId="ID_OBJECTS_TAG_NOTE" Paths="Create>Text" />
<ShortcutItem CommandName="Revision Schedule" CommandId="ID_VIEW_NEW_REVISION_SCHEDULE" Paths="View>Create" />
<ShortcutItem CommandName="Top Chord; Top Chord" CommandId="ID_TRUSS_TOP_CHORD_CURVE" Paths="Create>Detail; Contextual Tabs>Draw" />
<ShortcutItem CommandName="Web" CommandId="ID_TRUSS_WEB_CURVE" Paths="Create>Detail; Contextual Tabs>Draw" />
<ShortcutItem CommandName="Bottom Chord; Bottom Chord" CommandId="ID_TRUSS_BOTTOM_CHORD_CURVE" Paths="Create>Detail; Contextual Tabs>Draw" />
<ShortcutItem CommandName="Rebar Line" CommandId="ID_OBJECTS_REBAR_CURVE" Paths="Create>Draw; Modify>Draw" />
<ShortcutItem CommandName="Major Segment" CommandId="ID_MAJOR_SEGMENT" Paths="Create>Draw; Modify>Draw" />
<ShortcutItem CommandName="Allowable Bar Types" CommandId="ID_REBAR_SHAPE_ALLOWABLE_BAR_TYPES" Paths="Create>Rebar Types" />
<ShortcutItem CommandName="Multi-planar" CommandId="ID_TURN_ON_MULTI_PLANAR_SHAPE" Paths="Family Editor>Family Editor" />
<ShortcutItem CommandName="Shape Status" CommandId="ID_SHAPE_STATUS" Paths="Family Editor>Family Editor" />
<ShortcutItem CommandName="Load into Project" CommandId="ID_LOAD_INTO_PROJECTS_REBAR_SHAPE" Paths="Family Editor>Family Editor" />
<ShortcutItem CommandName="Load into Project and Close" CommandId="ID_LOAD_INTO_PROJECTS_CLOSE_REBAR_SHAPE" Paths="Family Editor>Family Editor" />
<ShortcutItem CommandName="Place Mass" CommandId="ID_OBJECTS_MASS" Paths="Create>Model; Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="Draw on Face" CommandId="Dialog_Essentials_GenhostCreate:Control_Essentials_DrawOnFaces" Paths="Create>Draw; Modify>Draw; Contextual Tabs>Placement" />
<ShortcutItem CommandName="Draw on Work Plane" CommandId="Dialog_Essentials_GenhostCreate:Control_Essentials_DrawOnWorkplane" Paths="Create>Draw; Modify>Draw; Contextual Tabs>Placement" />
<ShortcutItem CommandName="Level" CommandId="ID_OBJECTS_LEVEL" Shortcuts="LL" Paths="Create>Datum; Architecture>Datum; Structure>Datum" />
<ShortcutItem CommandName="Additional Settings:Sun Settings; Sun Settings" CommandId="ID_SETTINGS_SUNANDSHADOWSSETTINGS" Shortcuts="SU" Paths="Manage>Settings; Contextual Tabs>Presets and Data" />
<ShortcutItem CommandName="Location" CommandId="ID_GEO_MANAGE_LOCATIONS" Paths="Manage>Project Location; Analyze>Energy Optimization" />
<ShortcutItem CommandName="Split Face" CommandId="ID_SPLIT_FACE_IN_NEW_FAMILIES" Shortcuts="SF" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Repeat" CommandId="ID_REPEAT_COMPONENT" Paths="Modify>Modify" />
<ShortcutItem CommandName="Wall; Wall:Wall: Architectural" CommandId="ID_OBJECTS_WALL" Shortcuts="WA" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Wall:Wall: Structural" CommandId="ID_OBJECTS_STRUCTURAL_WALL" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Wall:Wall by Face" CommandId="ID_WALL_PICK_FACES" Paths="Architecture>Build; Massing & Site>Model by Face; Contextual Tabs>Draw" />
<ShortcutItem CommandName="Wall:Wall: Sweep" CommandId="ID_OBJECTS_CORNICE" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Wall:Wall: Reveal" CommandId="ID_OBJECTS_REVEAL" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Door" CommandId="ID_OBJECTS_DOOR" Shortcuts="DR" Paths="Architecture>Build" />
<ShortcutItem CommandName="Window" CommandId="ID_OBJECTS_WINDOW" Shortcuts="WN" Paths="Architecture>Build" />
<ShortcutItem CommandName="Component:Model In-Place" CommandId="ID_INPLACE_COMPONENT" Paths="Architecture>Build; Structure>Model; Systems>Model" />
<ShortcutItem CommandName="Column; Structural Column" CommandId="ID_OBJECTS_STRUCTURAL_COLUMN" Shortcuts="CL" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Column:Column: Architectural" CommandId="ID_OBJECTS_COLUMN" Paths="Architecture>Build" />
<ShortcutItem CommandName="Roof; Roof by Footprint" CommandId="ID_ROOF_FOOTPRINT" Paths="Architecture>Build" />
<ShortcutItem CommandName="Roof:Roof by Extrusion" CommandId="ID_ROOF_EXTRUSION" Paths="Architecture>Build" />
<ShortcutItem CommandName="Roof:Roof by Face" CommandId="ID_ROOF_PICK_FACES" Paths="Architecture>Build; Massing & Site>Model by Face" />
<ShortcutItem CommandName="Roof:Roof: Soffit" CommandId="ID_CREATE_SOFFIT_TB" Paths="Architecture>Build" />
<ShortcutItem CommandName="Roof:Roof: Fascia" CommandId="ID_CREATE_FASCIA_TB" Paths="Architecture>Build" />
<ShortcutItem CommandName="Roof:Roof: Gutter" CommandId="ID_CREATE_GUTTER_TB" Paths="Architecture>Build" />
<ShortcutItem CommandName="Ceiling; Automatic Ceiling" CommandId="ID_OBJECTS_CEILING" Paths="Architecture>Build; Contextual Tabs>Ceiling" />
<ShortcutItem CommandName="Floor; Floor:Floor: Architectural" CommandId="ID_OBJECTS_FLOOR" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Floor:Floor: Structural" CommandId="ID_OBJECTS_SLAB" Paths="Architecture>Build; Structure>Structure" />
<ShortcutItem CommandName="Floor:Floor by Face" CommandId="ID_FLOOR_PICK_FACES" Paths="Architecture>Build; Massing & Site>Model by Face" />
<ShortcutItem CommandName="Floor:Floor: Slab Edge; Slab:Floor: Slab Edge" CommandId="ID_CREATE_SLAB_EDGE_TB" Paths="Architecture>Build; Structure>Structure; Structure>Foundation" />
<ShortcutItem CommandName="Curtain System by Face" CommandId="ID_CURTA_SYSTEM_PICK_FACES" Paths="Architecture>Build; Massing & Site>Model by Face" />
<ShortcutItem CommandName="Curtain Grid" CommandId="ID_OBJECTS_CW_GRID" Paths="Architecture>Build" />
<ShortcutItem CommandName="Curtain Wall Mullion" CommandId="ID_OBJECTS_MULLION" Paths="Architecture>Build" />
<ShortcutItem CommandName="Railing" CommandId="ID_OBJECTS_RAILING" Paths="Architecture>Circulation" />
<ShortcutItem CommandName="Railing:Place on Stair/Ramp" CommandId="ID_OBJECTS_RAILING_ON_HOST" Paths="Architecture>Circulation" />
<ShortcutItem CommandName="Ramp" CommandId="ID_OBJECTS_RAMP" Paths="Architecture>Circulation" />
<ShortcutItem CommandName="Stair" CommandId="ID_OBJECTS_STAIRS" Paths="Architecture>Circulation" />
<ShortcutItem CommandName="Model Line" CommandId="ID_OBJECTS_PROJECT_CURVE" Shortcuts="LI" Paths="Architecture>Model; Structure>Model" />
<ShortcutItem CommandName="Room" CommandId="ID_OBJECTS_ROOM" Shortcuts="RM" Paths="Architecture>Room & Area" />
<ShortcutItem CommandName="Room Separator" CommandId="ID_OBJECTS_AREA_SEPARATION" Shortcuts="RS" Paths="Architecture>Room & Area" />
<ShortcutItem CommandName="Tag Room; Tag Room; Room Tag" CommandId="ID_OBJECTS_ROOM_TAG" Shortcuts="RT" Paths="Architecture>Room & Area; Annotate>Tag" />
<ShortcutItem CommandName="Tag Room:Tag All Not Tagged; Tag Area:Tag All Not Tagged" CommandId="ID_BUTTON_TAG_ALL" Shortcuts="TA" Paths="Architecture>Room & Area; Annotate>Tag" />
<ShortcutItem CommandName="Area" CommandId="ID_OBJECTS_AREA" Paths="Architecture>Room & Area" />
<ShortcutItem CommandName="Area Boundary" CommandId="ID_OBJECTS_AREASCHEME_BOUNDARY" Paths="Architecture>Room & Area" />
<ShortcutItem CommandName="Tag Area; Tag Area; Area Tag" CommandId="ID_OBJECTS_AREA_TAG" Paths="Architecture>Room & Area; Annotate>Tag" />
<ShortcutItem CommandName="Color Schemes" CommandId="ID_SETTINGS_COLORFILLSCHEMES" Paths="Architecture>Room & Area; Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Area and Volume Computations" CommandId="ID_SETTING_AREACALCULATIONS" Paths="Architecture>Room & Area; Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Opening by Face" CommandId="ID_CREATE_OPENING_BY_FACE_TB" Paths="Architecture>Opening; Structure>Opening" />
<ShortcutItem CommandName="Shaft Opening" CommandId="ID_CREATE_SHAFT_OPENING_TB" Paths="Architecture>Opening; Structure>Opening" />
<ShortcutItem CommandName="Wall Opening" CommandId="ID_CREATE_WALL_OPENING_TB" Paths="Architecture>Opening; Structure>Opening" />
<ShortcutItem CommandName="Vertical Opening" CommandId="ID_CREATE_VERTICAL_OPENING_TB" Paths="Architecture>Opening; Structure>Opening" />
<ShortcutItem CommandName="Dormer Opening" CommandId="ID_CREATE_DORMER_OPENING_TB" Paths="Architecture>Opening; Structure>Opening" />
<ShortcutItem CommandName="Grid" CommandId="ID_OBJECTS_GRID" Shortcuts="GR" Paths="Architecture>Datum; Structure>Datum" />
<ShortcutItem CommandName="Structural Framing: Beam" CommandId="ID_OBJECTS_BEAM" Shortcuts="BM" Paths="Structure>Structure" />
<ShortcutItem CommandName="Structural Trusses" CommandId="ID_OBJECTS_TRUSS" Paths="Structure>Structure" />
<ShortcutItem CommandName="Structural Framing: Brace" CommandId="ID_OBJECTS_BRACE" Shortcuts="BR" Paths="Structure>Structure" />
<ShortcutItem CommandName="Structural Beam System; Automatic Beam System" CommandId="ID_OBJECTS_JOIST_SYSTEM" Shortcuts="BS" Paths="Structure>Structure; Contextual Tabs>Beam System" />
<ShortcutItem CommandName="Structural Connection" CommandId="ID_STRUCTURAL_CONNECTION_DIRECT_CREATION" Paths="Structure>Connection; Steel>Connection" />
<ShortcutItem CommandName="Steel Connection Automation" CommandId="ID_STEEL_PLAYLIST_DYNAMO" Paths="Structure>Connection; Steel>Connection" />
<ShortcutItem CommandName="Show warnings in views" CommandId="ID_TOGGLE_STRUCTCONNECTIONS_SHOW_WARNINGS" Paths="Structure>Connection; Steel>Connection" />
<ShortcutItem CommandName="Structural Foundation: Isolated" CommandId="ID_OBJECTS_ISOLATED_FOOTING" Paths="Structure>Foundation" />
<ShortcutItem CommandName="Structural Foundation: Wall" CommandId="ID_OBJECTS_CONTINUOUS_FOOTING" Shortcuts="FT" Paths="Structure>Foundation" />
<ShortcutItem CommandName="Slab; Structural Foundation: Slab" CommandId="ID_OBJECTS_FOOTING_SLAB" Paths="Structure>Foundation" />
<ShortcutItem CommandName="Structural Rebar" CommandId="ID_REBAR_PLACE" Paths="Structure>Reinforcement; Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Structural Area Reinforcement" CommandId="ID_REBAR_SYSTEM_SKETCH" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Structural Path Reinforcement" CommandId="ID_PATH_REIN_SKETCH" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Structural Fabric Area" CommandId="ID_FABRIC_DISTR_SYSTEM_SKETCH" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Single Fabric Sheet Placement" CommandId="ID_FABRIC_SINGLE_PLACEMENT" Paths="Structure>Reinforcement; Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Edit Rebar Cover" CommandId="ID_CONCRETE_COVER" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Structural Rebar Coupler; Insert Coupler" CommandId="ID_REBAR_COUPLER" Paths="Structure>Reinforcement; Contextual Tabs>Coupler" />
<ShortcutItem CommandName="Rebar Cover Settings" CommandId="ID_REBAR_COVER_SETTINGS" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Reinforcement Settings" CommandId="ID_REBAR_ABBREVIATION" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Reinforcement Numbers" CommandId="ID_NUMBERING_REINF_PARTITIONS" Shortcuts="RN" Paths="Structure>Reinforcement" />
<ShortcutItem CommandName="Plate" CommandId="ID_CREATE_EXT_ENTITY_PLATE" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Bolts" CommandId="ID_CREATE_EXT_ENTITY_BOLT" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Bolts:Anchors" CommandId="ID_CREATE_EXT_ENTITY_ANCHOR" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Bolts:Holes" CommandId="ID_CREATE_EXT_ENTITY_HOLE" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Bolts:Shear Studs" CommandId="ID_CREATE_EXT_ENTITY_SHEAR_STUD" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Welds" CommandId="ID_CREATE_EXT_ENTITY_WELD" Paths="Steel>Fabrication Elements; " />
<ShortcutItem CommandName="Corner Cut" CommandId="ID_CREATE_EXT_ENTITY_CORNER_CUT" Paths="Steel>Modifiers; " />
<ShortcutItem CommandName="Notch Skewed" CommandId="ID_CREATE_EXT_ENTITY_BEAM_COPE" Paths="Steel>Modifiers; " />
<ShortcutItem CommandName="Shorten" CommandId="ID_CREATE_EXT_ENTITY_SHORTENING" Paths="Steel>Modifiers; " />
<ShortcutItem CommandName="Contour Cut" CommandId="ID_CREATE_EXT_ENTITY_CONTOUR" Paths="Steel>Modifiers; " />
<ShortcutItem CommandName="Notch" CommandId="ID_STEEL_PARAM_CUT_COPE" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Miter" CommandId="ID_STEEL_PARAM_CUT_MITER" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Miter:Saw cut - Flange" CommandId="ID_STEEL_PARAM_CUT_SAW_CUT_FLANGE" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Miter:Saw cut - Web" CommandId="ID_STEEL_PARAM_CUT_SAW_CUT_WEB" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Cut Through" CommandId="ID_STEEL_PARAM_CUT_THROUGH" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Cut By" CommandId="ID_STEEL_PARAM_CUT_BY" Paths="Steel>Parametric Cuts" />
<ShortcutItem CommandName="Split" CommandId="CustomCtrl_%PanelParts%Split" Shortcuts="PL" Paths="Precast>Segmentation" />
<ShortcutItem CommandName="PRECAST_INTERNAL_UPDATE" CommandId="CustomCtrl_%PanelParts%PRECAST_INTERNAL_UPDATE" Paths="Precast>Segmentation" />
<ShortcutItem CommandName="MountingParts" CommandId="CustomCtrl_%PanelConnections%MountingParts" Paths="Precast>Connections" />
<ShortcutItem CommandName="Reinforcement" CommandId="CustomCtrl_%panelReinforcement%Reinforcement" Shortcuts="RF" Paths="Precast>Reinforcement" />
<ShortcutItem CommandName="CustomFabric Sheet" CommandId="CustomCtrl_%panelReinforcement%CustomFabricSheet" Paths="Precast>Reinforcement" />
<ShortcutItem CommandName="CFS Config" CommandId="CustomCtrl_%panelReinforcement%CFSConfig" Paths="Precast>Reinforcement" />
<ShortcutItem CommandName="ShopDrawings" CommandId="CustomCtrl_%panelConstruction%ShopDrawings" Paths="Precast>Fabrication" />
<ShortcutItem CommandName="CAMExport" CommandId="CustomCtrl_%panelConstruction%CAMExport" Paths="Precast>Fabrication" />
<ShortcutItem CommandName="Configuration" CommandId="CustomCtrl_%PanelConfiguration%Configuration" Shortcuts="CFG" Paths="Precast>Configuration" />
<ShortcutItem CommandName="Precast Updates:Disable" CommandId="CustomCtrl_%CustomCtrl_%panelTurnOff%Precast Updates%DisablePrecastUpdates" Paths="Precast>Precast Updates" />
<ShortcutItem CommandName="Precast Updates:Enable" CommandId="CustomCtrl_%CustomCtrl_%panelTurnOff%Precast Updates%EnablePrecastUpdates" Paths="Precast>Precast Updates" />
<ShortcutItem CommandName="Duct" CommandId="ID_RBS_MECHANICAL_DUCT" Shortcuts="DT" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Duct Placeholder" CommandId="ID_DUCT_1LINE_PATH" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Duct Fitting" CommandId="ID_RBS_MECHANICAL_FITTING" Shortcuts="DF" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Duct Accessory" CommandId="ID_RBS_MECHANICAL_ACCESSORY" Shortcuts="DA" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Convert to Flex Duct" CommandId="ID_RBS_MECHANICAL_CONVERTTOFLEX" Shortcuts="CV" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Flex Duct" CommandId="ID_RBS_MECHANICAL_FLEX" Shortcuts="FD" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Air Terminal" CommandId="ID_RBS_MECHANICAL_DIFFUSER" Shortcuts="AT" Paths="Systems>HVAC" />
<ShortcutItem CommandName="Multi-Point Routing" CommandId="ID_FABRICATION_PART_START_MPR" Shortcuts="MR" Paths="Systems>Fabrication" />
<ShortcutItem CommandName="MEP Fabrication Ductwork Stiffener" CommandId="ID_RBS_FABRICATION_DUCTWORK_STIFFENER" Paths="Systems>MEP Detailing" />
<ShortcutItem CommandName="P&ID Modeler" CommandId="ID_MEP_PNID_MODELER" Paths="Systems>P&ID Collaboration" />
<ShortcutItem CommandName="Mechanical Equipment" CommandId="ID_RBS_MECHANICAL_EQUIPMENT" Shortcuts="ME" Paths="Systems>Mechanical" />
<ShortcutItem CommandName="Mechanical Control Device" CommandId="ID_RBS_MECHANICAL_CONTROL_DEVICE" Paths="Systems>Mechanical" />
<ShortcutItem CommandName="Pipe" CommandId="ID_RBS_PIPE_PIPE" Shortcuts="PI" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Pipe Placeholder" CommandId="ID_PIPE_1LINE_PATH" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Parallel Pipes" CommandId="ID_PARALLEL_PIPES" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Pipe Fitting" CommandId="ID_RBS_PIPE_FITTING" Shortcuts="PF" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Pipe Accessory" CommandId="ID_RBS_PIPE_ACCESSORY" Shortcuts="PA" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Flex Pipe" CommandId="ID_RBS_PIPE_FLEX" Shortcuts="FP" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Plumbing Equipment" CommandId="ID_RBS_PLUMBING_EQUIPMENT" Shortcuts="PE" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Plumbing Fixture" CommandId="ID_RBS_PLUMBING_FIXTURE" Shortcuts="PX" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Sprinkler" CommandId="ID_RBS_SPRINKLER" Shortcuts="SK" Paths="Systems>Plumbing & Piping" />
<ShortcutItem CommandName="Arc Wire" CommandId="ID_RBS_ELECTRICAL_WIRE" Shortcuts="AW" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Spline Wire" CommandId="ID_RBS_ELECTRICAL_WIRE_SPLINE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Chamfered Wire" CommandId="ID_RBS_ELECTRICAL_WIRE_CHAMFER" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Cable Tray" CommandId="ID_RBS_CABLE_TRAY" Shortcuts="CT" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Conduit" CommandId="ID_RBS_CONDUIT" Shortcuts="CN" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Parallel Conduits" CommandId="ID_PARALLEL_CONDUIT" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Cable Tray Fitting" CommandId="ID_RBS_CABLETRAY_FITTING" Shortcuts="TF" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Conduit Fitting" CommandId="ID_RBS_CONDUIT_FITTING" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Electrical Equipment" CommandId="ID_RBS_ELECTRICAL_EQUIPMENT" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Electrical Fixture" CommandId="ID_RBS_ELECTRICAL_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Communication" CommandId="ID_RBS_ELECTRICAL_COMMUNICATION_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Data" CommandId="ID_RBS_ELECTRICAL_DATA_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Fire Alarm" CommandId="ID_RBS_ELECTRICAL_FIREALARM_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Lighting" CommandId="ID_RBS_ELECTRICAL_LIGHTING_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Nurse Call" CommandId="ID_RBS_ELECTRICAL_NURSECALL_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Security" CommandId="ID_RBS_ELECTRICAL_SECURITY_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Telephone" CommandId="ID_RBS_ELECTRICAL_TELEPHONE_DEVICE" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Lighting Fixture" CommandId="ID_RBS_LIGHTING_FIXTURE" Shortcuts="LF" Paths="Systems>Electrical" />
<ShortcutItem CommandName="Linear Dimension" CommandId="ID_ANNOTATIONS_DIMENSION_LINEAR" Paths="Annotate>Dimension; Modify>Measure; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Spot Elevation; Spot Elevation" CommandId="ID_SPOT_ELEVATION" Shortcuts="EL" Paths="Annotate>Dimension; Modify>Measure; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Spot Coordinate; Spot Coordinate" CommandId="ID_SPOT_COORDINATE" Paths="Annotate>Dimension; Modify>Measure; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Spot Slope; Spot Slope" CommandId="ID_SPOT_SLOPE" Paths="Annotate>Dimension; Modify>Measure; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Alignment Station; Alignment Station" CommandId="ID_ALIGNMENT_STATION_LABEL" Paths="Annotate>Dimension; Contextual Tabs>Dimension" />
<ShortcutItem CommandName="Alignment Station:Alignment Station Set" CommandId="ID_ALIGNMENT_STATION_LABEL_SET" Paths="Annotate>Dimension" />
<ShortcutItem CommandName="Spot Elevation Types" CommandId="ID_SETTINGS_SPOT_ELEVATION" Paths="Annotate>Dimension" />
<ShortcutItem CommandName="Spot Coordinate Types" CommandId="ID_SETTINGS_SPOT_COORDINATE" Paths="Annotate>Dimension" />
<ShortcutItem CommandName="Spot Slope Types" CommandId="ID_SETTINGS_SPOT_SLOPE" Paths="Annotate>Dimension" />
<ShortcutItem CommandName="Alignment Station Label Types" CommandId="ID_SETTINGS_ALIGNMENT_STATION_LABEL" Paths="Annotate>Dimension" />
<ShortcutItem CommandName="Detail Line" CommandId="ID_OBJECTS_DETAIL_CURVES" Shortcuts="DL" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Repeating Detail Component" CommandId="ID_OBJECTS_REPEATING_DETAIL" Shortcuts="RDC" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Legend Component" CommandId="ID_OBJECTS_LEGEND_COMPONENT" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Revision Cloud" CommandId="ID_OBJECTS_CLOUD" Shortcuts="CL" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Insulation" CommandId="ID_OBJECTS_INSULATION" Paths="Annotate>Detail" />
<ShortcutItem CommandName="Tag by Category; Tag by Category" CommandId="ID_BUTTON_TAG" Shortcuts="TG" Paths="Annotate>Tag; Quick Access Toolbar" />
<ShortcutItem CommandName="Beam Annotations" CommandId="ID_BEAM_ANNOTATION_PLACEMENT" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Multi-Category Tag" CommandId="ID_TAG_MULTI" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Material Tag" CommandId="ID_TAG_MATERIAL" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Space Tag" CommandId="ID_OBJECTS_MEP_SPACE_TAG" Paths="Annotate>Tag; Analyze>Spaces & Zones" />
<ShortcutItem CommandName="View Reference" CommandId="ID_NEW_REFERENCE_VIEWER" Paths="Annotate>Tag; View>Sheet Composition" />
<ShortcutItem CommandName="Stair Tread/Riser Number" CommandId="ID_STAIRS_TRISER_NUMBER" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Aligned Multi-Rebar Annotation" CommandId="ID_MULTI_REFERENCE_ANNOTATION_ALIGNED" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Linear Multi-Rebar Annotation" CommandId="ID_MULTI_REFERENCE_ANNOTATION_LINEAR" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Element Keynote" CommandId="ID_KEYNOTE_ELEMENT" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Material Keynote" CommandId="ID_KEYNOTE_MATERIAL" Paths="Annotate>Tag" />
<ShortcutItem CommandName="User Keynote" CommandId="ID_KEYNOTE_USER" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Loaded Tags And Symbols" CommandId="ID_SETTINGS_TAGS" Paths="Annotate>Tag" />
<ShortcutItem CommandName="Duct Legend" CommandId="ID_RBS_MECHANICAL_COLOR_FILL" Paths="Annotate>Color Fill; Analyze>Color Fill" />
<ShortcutItem CommandName="Pipe Legend" CommandId="ID_RBS_PIPING_COLOR_FILL" Paths="Annotate>Color Fill; Analyze>Color Fill" />
<ShortcutItem CommandName="Color Fill Legend" CommandId="ID_OBJECTS_ROOM_FILL" Paths="Annotate>Color Fill; Analyze>Color Fill" />
<ShortcutItem CommandName="Span Direction Symbol" CommandId="ID_OBJECTS_SPAN_DIR_SYM" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Beam System Symbol" CommandId="ID_OBJECTS_BEAM_SYSTEM_TAG" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Stair Path" CommandId="ID_OBJECTS_STAIRS_PATH" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Area Reinforcement Symbol" CommandId="ID_OBJECTS_REBAR_SYSTEM_SPAN_SYM" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Path Reinforcement Symbol" CommandId="ID_OBJECTS_PATH_REIN_SPAN_SYM" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Rebar Bending Detail" CommandId="ID_PLACE_BENDING_DETAIL" Paths="Annotate>Symbol; Contextual Tabs>Symbol" />
<ShortcutItem CommandName="Fabric Reinforcement Symbol" CommandId="ID_FABRIC_SYSTEM_PLACE_SPANSYMBOL" Paths="Annotate>Symbol" />
<ShortcutItem CommandName="Analytical Member" CommandId="ID_ANALYTICAL_MODEL_MEMBERS" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Panel:Panel by Boundary" CommandId="ID_CREATE_ANALYTICAL_MODEL_PANEL" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Panel:Panel by Extrusion" CommandId="ID_CREATE_ANALYTICAL_MODEL_PANEL_BY_EXTRUSION" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Analytical Link" CommandId="ID_CREATE_ANALYTICAL_LINK" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Boundary Conditions" CommandId="ID_OBJECT_BC" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Loads" CommandId="ID_ANALYTICAL_MODEL_LOADS" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Analytical Automation" CommandId="ID_ANALYTICAL_AUTOMATION_PLAYLIST_DYNAMO" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Load Cases" CommandId="ID_STRUCTURAL_SETTINGS_LOAD_CASES" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Load Combinations" CommandId="ID_STRUCTURAL_SETTINGS_LOAD_COMB" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Boundary Conditions Settings" CommandId="ID_STRUCTURAL_SETTINGS_BOUND_COND" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Loads Scaling Display" CommandId="ID_STRUCTURAL_SETTINGS_LOADS_SCALING_DISPLAY" Paths="Analyze>Structural Analytical Model" />
<ShortcutItem CommandName="Space" CommandId="ID_OBJECTS_MEP_SPACE" Paths="Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Space Separator" CommandId="ID_OBJECTS_MEP_SPACE_SEPARATION" Paths="Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Space Naming" CommandId="ID_MEP_SPACE_NAMING_UTILITY" Paths="Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Zone" CommandId="ID_RBS_HVAC_ZONE" Paths="Analyze>Spaces & Zones" />
<ShortcutItem CommandName="Panel Schedules" CommandId="ID_RBS_VIEW_PANEL_SCHEDULE" Shortcuts="PS" Paths="Analyze>Reports & Schedules" />
<ShortcutItem CommandName="Duct Pressure Loss Report" CommandId="ID_MEP_DUCT_PRESSURE_LOSS_REPORT" Paths="Analyze>Reports & Schedules" />
<ShortcutItem CommandName="Pipe Pressure Loss Report" CommandId="ID_MEP_PIPE_PRESSURE_LOSS_REPORT" Paths="Analyze>Reports & Schedules" />
<ShortcutItem CommandName="Check Duct Systems" CommandId="ID_RBS_CHECK_DUCT_SYSTEMS" Paths="Analyze>Check Systems" />
<ShortcutItem CommandName="Check Pipe Systems" CommandId="ID_RBS_CHECK_PIPE_SYSTEMS" Shortcuts="PC" Paths="Analyze>Check Systems" />
<ShortcutItem CommandName="Check Circuits" CommandId="ID_RBS_CHECK_CIRCUITS" Shortcuts="EC" Paths="Analyze>Check Systems" />
<ShortcutItem CommandName="Show Disconnects" CommandId="ID_SHOWDISCONNECTS_BUTTON" Paths="Analyze>Check Systems" />
<ShortcutItem CommandName="System-Zone" CommandId="ID_MEP_CREATE_SYSTEM_ZONE" Shortcuts="SZ" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Create Energy Model" CommandId="ID_ENABLE_ENERGY_ANALYSIS" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Delete Energy Model" CommandId="ID_DISABLE_ENERGY_ANALYSIS" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Systems Analysis" CommandId="ID_RUN_SYSTEMS_ANALYSIS" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Generate" CommandId="ID_CEA_LAUNCH_ANALYSIS" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Optimize" CommandId="ID_CEA_OPTIMIZE" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Insights:Generate Analysis" CommandId="ID_SYSTEMS_ANALYSIS_INSIGHT" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Insights:View Analysis" CommandId="ID_SYSTEMS_ANALYSIS_RESULTS_INSIGHT" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Energy Settings" CommandId="ID_CEA_VIEW_ENERGY_DATA" Paths="Analyze>Energy Optimization" />
<ShortcutItem CommandName="Area Based Load Boundary" CommandId="ID_RBS_ANALYTICAL_AREA_BASED_LOAD_BOUNDARY" Paths="Analyze>Electrical Analysis" />
<ShortcutItem CommandName="Area Based Load Boundary:Show Boundary Open-Ends" CommandId="ID_RBS_SHOW_ABL_SEPARATION_LINE_OPEN_END" Paths="Analyze>Electrical Analysis" />
<ShortcutItem CommandName="Area Based Load Boundary:Hide Boundary Open-Ends" CommandId="ID_RBS_HIDE_ABL_SEPARATION_LINE_OPEN_END" Paths="Analyze>Electrical Analysis" />
<ShortcutItem CommandName="Area Based Load" CommandId="IDS_RBS_ANALYTICAL_LOADZONE" Paths="Analyze>Electrical Analysis" />
<ShortcutItem CommandName="Equipment Load" CommandId="ID_RBS_ELECTRICAL_ANALYSIS_ADD_EQUIPMENT_LOAD" Paths="Analyze>Electrical Analysis" />
<ShortcutItem CommandName="Path of Travel" CommandId="ID_PATH_OF_TRAVEL" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="Reveal Obstacles" CommandId="ID_PATH_OF_TRAVEL_SHOW_OBSTACLES" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="Multiple Paths" CommandId="ID_MULTIPLE_PATHS" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="One Way Indicator" CommandId="ID_ONE_WAY_INDICATOR" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="People Content" CommandId="ID_PEOPLE_CONTENT" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="Spatial Grid" CommandId="ID_SPATIAL_GRID" Paths="Analyze>Route Analysis" />
<ShortcutItem CommandName="Show Mass by View Settings" CommandId="ID_SHOW_MASS_NO_OVERRIDE" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="Show Mass Form and Floors" CommandId="ID_SHOW_MASS_STANDARD" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="Show Mass Surface Types" CommandId="ID_SHOW_MASS_SURFACES" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="Show Mass Zones and Shades" CommandId="ID_SHOW_MASS_ZONES" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="In-Place Mass" CommandId="ID_INPLACE_MASS" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="3D Sketch" CommandId="ID_LAUNCH_FORMIT" Paths="Massing & Site>Conceptual Mass" />
<ShortcutItem CommandName="Toposolid" CommandId="ID_SITE_TOPO_SOLID" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Toposolid:Create from Import" CommandId="ID_SITE_TOPO_SOLID_FROM_IMPORT" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Site Component" CommandId="ID_SITE_COMPONENT" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Parking Component" CommandId="ID_SITE_PARKING_COMPONENT" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Property Line" CommandId="ID_SITE_PROPERTYLINE" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Label Contours" CommandId="ID_SITE_LABEL_CONTOURS" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Property Line Data" CommandId="ID_PROPERTY_LINE_DATA" Paths="Massing & Site>Model Site" />
<ShortcutItem CommandName="Graded Region" CommandId="ID_SITE_GRADE" Paths="Massing & Site>Analysis" />
<ShortcutItem CommandName="Editing Requests" CommandId="ID_WORKSET_EDITING_REQUESTS" Shortcuts="ER" Paths="Collaborate>Communicate" />
<ShortcutItem CommandName="Collaborate" CommandId="ID_COLLABORATE" Paths="Collaborate>Manage Collaboration" />
<ShortcutItem CommandName="Collaborate in Cloud" CommandId="ID_COLLABORATE_360" Paths="Collaborate>Manage Collaboration" />
<ShortcutItem CommandName="Worksets" CommandId="ID_SETTINGS_PARTITIONS" Paths="Collaborate>Manage Collaboration" />
<ShortcutItem CommandName="Gray Inactive Worksets" CommandId="ID_GRAY_INACTIVE_WORKSET_GRAPHICS" Paths="Collaborate>Manage Collaboration" />
<ShortcutItem CommandName="Show Worksharing Make Editable Controls" CommandId="ID_TOGGLE_SHOW_MAKE_ELEMENT_EDITABLE_CONTROLS" Paths="Collaborate>Manage Collaboration" />
<ShortcutItem CommandName="Synchronize with Central:Synchronize and Modify Settings" CommandId="ID_FILE_SAVE_TO_CENTRAL" Paths="Collaborate>Synchronize; Quick Access Toolbar" />
<ShortcutItem CommandName="Synchronize with Central:Synchronize Now" CommandId="ID_FILE_SAVE_TO_CENTRAL_SHORTCUT" Shortcuts="SY" Paths="Collaborate>Synchronize; Quick Access Toolbar" />
<ShortcutItem CommandName="Reload Latest" CommandId="ID_WORKSETS_RELOAD_LATEST" Shortcuts="RL#RW" Paths="Collaborate>Synchronize" />
<ShortcutItem CommandName="Relinquish All Mine" CommandId="ID_RELINQUISH_ALL_MINE" Paths="Collaborate>Synchronize" />
<ShortcutItem CommandName="Worksharing Monitor" CommandId="ID_WORKSHARING_MONITOR" Paths="Collaborate>Synchronize" />
<ShortcutItem CommandName="Manage Connection to a Revit Server Accelerator" CommandId="ID_MANAGE_CONNECTION_TO_A_REVIT_SERVER_ACCELERATOR" Paths="Collaborate>Synchronize" />
<ShortcutItem CommandName="Show History" CommandId="ID_PARTITIONS_SHOW_HISTORY" Paths="Collaborate>Manage Models" />
<ShortcutItem CommandName="Restore Backup" CommandId="ID_FILE_BACKUPS" Paths="Collaborate>Manage Models" />
<ShortcutItem CommandName="Publish Settings" CommandId="ID_VIEWS_FOR_A360" Paths="Collaborate>Manage Models" />
<ShortcutItem CommandName="Repair Central Model" CommandId="ID_REPAIR_CENTRAL_MODEL" Paths="Collaborate>Manage Models" />
<ShortcutItem CommandName="Copy/ Monitor:Use Current Project" CommandId="ID_COPY_WATCH_CURRENT" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Copy/ Monitor:Select Link" CommandId="ID_COPY_WATCH_LINK" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Coordination Review:Use Current Project" CommandId="ID_RECONCILE_CURRENT" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Coordination Review:Select Link" CommandId="ID_RECONCILE_LINK" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Coordination Settings" CommandId="ID_COPY_SETTINGS" Paths="Collaborate>Coordinate; Contextual Tabs>Tools" />
<ShortcutItem CommandName="Reconcile Hosting" CommandId="ID_TOGGLE_HOST_BY_LINK_BROWSER" Paths="Collaborate>Coordinate; Contextual Tabs>Host" />
<ShortcutItem CommandName="Interference Check:Run Interference Check" CommandId="ID_INTERFERENCE_CHECK" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Interference Check:Show Last Report" CommandId="ID_INTERFERENCE_REPORT" Paths="Collaborate>Coordinate" />
<ShortcutItem CommandName="Shared Views" CommandId="ID_SHARED_VIEWS" Paths="Collaborate>Share" />
<ShortcutItem CommandName="View Templates:Apply Template Properties to Current View" CommandId="ID_APPLY_VIEW_TEMPLATE" Paths="View>Graphics" />
<ShortcutItem CommandName="View Templates:Create Template from Current View" CommandId="ID_CREATE_VIEW_TEMPLATE" Paths="View>Graphics" />
<ShortcutItem CommandName="View Templates:Manage View Templates" CommandId="ID_SETTINGS_VIEWTEMPLATES" Paths="View>Graphics" />
<ShortcutItem CommandName="Filters" CommandId="ID_SETTINGS_FILTERS" Shortcuts="VF" Paths="View>Graphics" />
<ShortcutItem CommandName="Show Hidden Lines by Element" CommandId="ID_HIDE_ELEMENTS_EDITOR" Paths="View>Graphics" />
<ShortcutItem CommandName="Remove Hidden Lines by Element" CommandId="ID_UNHIDE_ELEMENTS_EDITOR" Paths="View>Graphics" />
<ShortcutItem CommandName="Cut Profile" CommandId="ID_EDIT_CUT_BOUNDARY" Paths="View>Graphics" />
<ShortcutItem CommandName="Render" CommandId="ID_PHOTO_RENDERING_VIEW" Shortcuts="RR" Paths="View>Presentation; View Control Bar" />
<ShortcutItem CommandName="Cloud Rendering:Render in Cloud" CommandId="ID_PHOTO_RENDER_IN_CLOUD" Shortcuts="RD" Paths="View>Presentation; View Control Bar" />
<ShortcutItem CommandName="Cloud Rendering:Render Gallery" CommandId="ID_PHOTO_RENDER_GALLERY" Shortcuts="RG" Paths="View>Presentation; View Control Bar" />
<ShortcutItem CommandName="Twinmotion:Open in Twinmotion" CommandId="ID_OPEN_IN_TWINMOTION" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Auto Sync" CommandId="ID_TWINMOTION_DIRECT_LINK_AUTOSYNC_DISABLE" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Synchronize" CommandId="ID_TWINMOTION_DIRECT_LINK_SYNCHRONIZE" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Connections" CommandId="ID_TWINMOTION_DIRECT_LINK_CONNECTIONS" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Export to Datasmith file" CommandId="ID_TWINMOTION_EXPORT_TO_DATASMITH_FILE" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Export Messages" CommandId="ID_TWINMOTION_MESSAGES" Paths="View>Presentation" />
<ShortcutItem CommandName="Twinmotion:Export Settings" CommandId="ID_TWINMOTION_SETTINGS" Paths="View>Presentation" />
<ShortcutItem CommandName="Callout" CommandId="ID_VIEW_NEW_CALLOUT" Paths="View>Create" />
<ShortcutItem CommandName="Callout:Sketch" CommandId="ID_VIEW_NEW_CALLOUT_SKETCH" Paths="View>Create" />
<ShortcutItem CommandName="Drafting View" CommandId="ID_VIEW_NEW_DRAFTING" Paths="View>Create" />
<ShortcutItem CommandName="Scope Box" CommandId="ID_VOLUME_OF_INTEREST" Paths="View>Create" />
<ShortcutItem CommandName="Sheet; New Sheet" CommandId="ID_VIEW_NEW_SHEET" Paths="View>Sheet Composition; Contextual Tabs>Create" />
<ShortcutItem CommandName="Place View" CommandId="ID_VIEW_PLACE_VIEW" Paths="View>Sheet Composition" />
<ShortcutItem CommandName="Title Block" CommandId="ID_OBJECTS_PLACE_TITLEBLOCK" Paths="View>Sheet Composition" />
<ShortcutItem CommandName="Sheet Issues/Revisions; Additional Settings:Sheet Issues/Revisions" CommandId="ID_SETTINGS_REVISIONS" Shortcuts="RV" Paths="View>Sheet Composition; Manage>Settings" />
<ShortcutItem CommandName="Guide Grid" CommandId="ID_CREATE_GUIDE_GRID" Paths="View>Sheet Composition" />
<ShortcutItem CommandName="Matchline" CommandId="ID_NEW_MATCHLINE" Paths="View>Sheet Composition" />
<ShortcutItem CommandName="Viewports:Activate View; Activate View" CommandId="ID_VIEWPORT_ACTIVATE" Shortcuts="AV" Paths="View>Sheet Composition; Contextual Tabs>Viewport; Context Menu" />
<ShortcutItem CommandName="Viewports:Deactivate View" CommandId="ID_VIEWPORT_ACTIVATE_BASE" Shortcuts="DV" Paths="View>Sheet Composition; Context Menu" />
<ShortcutItem CommandName="Project Information" CommandId="ID_SETTINGS_PROJECT_INFORMATION" Paths="Manage>Settings" />
<ShortcutItem CommandName="Project Parameters" CommandId="ID_SETTINGS_PROJECT_PARAMETERS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Global Parameters" CommandId="ID_SETTINGS_GLOBAL_PARAMETERS" Shortcuts="GL" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Mechanical Settings" CommandId="ID_RBS_MECHANICAL_SETTINGS" Shortcuts="MS" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Electrical Settings" CommandId="ID_RBS_ELECTRICAL_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Fabrication Settings" CommandId="ID_MEP_FABRICATION_SETTINGS" Shortcuts="FS" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Building/Space Type Settings" CommandId="ID_RBS_BUILDINGSPACE_TYPE_SETTINGS" Shortcuts="BT" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:Electrical Analytical Load Type Settings" CommandId="ID_MEP_ELECTRICAL_ANALYSIS_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="MEP Settings:P&ID Settings" CommandId="ID_MEP_PNID_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Elevation Tags" CommandId="ID_VIEWTAGSTYLES_ELEVATIONTAGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Callout Tags" CommandId="ID_VIEWTAGSTYLES_CALLOUTTAGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Halftone / Underlay" CommandId="ID_SETTINGS_HALFTONE" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Material Assets" CommandId="ID_SETTINGS_RENDERING_APPEARANCE" Paths="Manage>Settings" />
<ShortcutItem CommandName="Additional Settings:Multiple Values Indication" CommandId="ID_MULTIPLE_VALUES_INDICATOR_SETTINGS" Paths="Manage>Settings" />
<ShortcutItem CommandName="Coordinates:Acquire Coordinates" CommandId="ID_GEO_ACQUIRE_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Coordinates:Publish Coordinates" CommandId="ID_GEO_PUBLISH_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Coordinates:Reset Shared Coordinates" CommandId="ID_RESET_SHARED_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Coordinates:Specify Coordinates at Point" CommandId="ID_SPECIFY_SHARED_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Coordinates:Report Shared Coordinates" CommandId="ID_REPORT_SHARED_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Position:Relocate Project" CommandId="ID_RELOCATE_SHARED_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Position:Rotate True North" CommandId="ID_ROTATE_SHARED_COORDINATES" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Position:Mirror Project" CommandId="ID_MIRROR_PROJECT" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Position:Rotate Project North" CommandId="ID_ROTATE_PROJECT" Paths="Manage>Project Location" />
<ShortcutItem CommandName="Design Options" CommandId="ID_EDIT_DESIGNOPTIONS" Paths="Manage>Design Options" />
<ShortcutItem CommandName="Add to Set" CommandId="ID_EDIT_ADDTODESIGNOPTIONSET" Paths="Manage>Design Options" />
<ShortcutItem CommandName="Pick to Edit" CommandId="ID_EDIT_PICKS_OPTION" Paths="Manage>Design Options" />
<ShortcutItem CommandName="Create Study" CommandId="ID_GENERATIVE_DESIGN_CREATE_STUDY" Paths="Manage>Generative Design" />
<ShortcutItem CommandName="Explore Outcomes" CommandId="ID_GENERATIVE_DESIGN_EXPLORE_OUTCOMES" Paths="Manage>Generative Design" />
<ShortcutItem CommandName="Phases" CommandId="ID_SETTINGS_PHASES" Paths="Manage>Phasing" />
<ShortcutItem CommandName="Save Selection" CommandId="ID_FILTERS_SELECTION_SAVE" Paths="Manage>Selection; Contextual Tabs>Selection" />
<ShortcutItem CommandName="Load Selection" CommandId="ID_RETRIEVE_FILTERS" Paths="Manage>Selection; Contextual Tabs>Selection" />
<ShortcutItem CommandName="Edit Selection" CommandId="ID_EDIT_SELECTIONS" Paths="Manage>Selection; Contextual Tabs>Selection" />
<ShortcutItem CommandName="Join:Switch Join Order" CommandId="ID_SWITCH_JOIN_ORDER_EDITOR" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Join/Unjoin Roof" CommandId="ID_JOIN_ROOF" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Beam/Column Joins" CommandId="ID_EDIT_BEAM_JOINS" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Wall Joins" CommandId="ID_EDIT_WALL_JOINS" Shortcuts="WJ" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Demolish" CommandId="ID_EDIT_DEMOLISH" Paths="Modify>Geometry" />
<ShortcutItem CommandName="Hide in View:Hide Elements" CommandId="ID_VIEW_HIDE_ELEMENTS" Shortcuts="EH" Paths="Modify>View" />
<ShortcutItem CommandName="Hide in View:Hide Category" CommandId="ID_VIEW_HIDE_CATEGORY" Shortcuts="VH" Paths="Modify>View" />
<ShortcutItem CommandName="Hide in View:Hide by Filter; Override Graphics in View:Override by Filter" CommandId="ID_VIEW_GO_FILTER" Paths="Modify>View" />
<ShortcutItem CommandName="Displace Elements" CommandId="ID_DISPLACEMENT_CREATE" Paths="Modify>View" />
<ShortcutItem CommandName="Override Graphics in View:Override by Element" CommandId="ID_VIEW_OVERRIDE_ELEMENTS" Shortcuts="EOD" Paths="Modify>View" />
<ShortcutItem CommandName="Override Graphics in View:Override by Category" CommandId="ID_VIEW_OVERRIDE_CATEGORY" Paths="Modify>View" />
<ShortcutItem CommandName="Linework" CommandId="ID_EDIT_LINEWORK" Shortcuts="LW" Paths="Modify>View" />
<ShortcutItem CommandName="Selection Box" CommandId="ID_VIEW_APPLY_SELECTION_BOX" Shortcuts="BX" Paths="Modify>View" />
<ShortcutItem CommandName="Create Assembly" CommandId="ID_CREATE_ASSEMBLY" Paths="Modify>Create" />
<ShortcutItem CommandName="Create Parts" CommandId="ID_CREATE_PARTS" Paths="Modify>Create" />
<ShortcutItem CommandName="Finish Model" CommandId="ID_END_INPLACE_FAMILY" Shortcuts="FS" Paths="In-Place Model>In-Place Editor" />
<ShortcutItem CommandName="Cancel Model" CommandId="ID_QUIT_INPLACE_FAMILY" Paths="In-Place Model>In-Place Editor" />
<ShortcutItem CommandName="Finish Mass" CommandId="ID_END_INPLACE_MASS" Shortcuts="FS" Paths="In-Place Mass>In-Place Editor" />
<ShortcutItem CommandName="Cancel Mass" CommandId="ID_QUIT_INPLACE_MASS" Paths="In-Place Mass>In-Place Editor" />
<ShortcutItem CommandName="Finish" CommandId="ID_END_INPLACE_ZONE" Shortcuts="FS" Paths="Zone>Edit" />
<ShortcutItem CommandName="Cancel" CommandId="ID_QUIT_INPLACE_ZONE" Paths="Zone>Edit" />
<ShortcutItem CommandName="Slope Control Point" CommandId="ID_RBS_TOGGLE_END_REFERENCE" Paths="Contextual Tabs>Slope; Contextual Tabs>Justify" />
<ShortcutItem CommandName="Finish" CommandId="ID_RBS_FINISH_JUSTIFY_SLOPE_EDITMODE" Shortcuts="FS" Paths="Contextual Tabs>Slope Editor; Contextual Tabs>Justify Editor" />
<ShortcutItem CommandName="Cancel" CommandId="ID_RBS_CANCEL_JUSTIFY_SLOPE_EDITMODE" Paths="Contextual Tabs>Slope Editor; Contextual Tabs>Justify Editor" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_CANCEL_SKETCH" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_SKETCH" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Add to Relation" CommandId="ID_ANALYTICAL_RELATIONSHIP_EDIT_MODE_ADD" Paths="Contextual Tabs>Edit Relation" />
<ShortcutItem CommandName="Remove from Relation" CommandId="ID_ANALYTICAL_RELATIONSHIP_EDIT_MODE_REMOVE" Paths="Contextual Tabs>Edit Relation" />
<ShortcutItem CommandName="Finish" CommandId="ID_ANALYTICAL_RELATIONSHIP_EDIT_MODE_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Edit Relation" />
<ShortcutItem CommandName="Cancel" CommandId="ID_ANALYTICAL_RELATIONSHIP_EDIT_MODE_CANCEL" Paths="Contextual Tabs>Edit Relation" />
<ShortcutItem CommandName="Boundary" CommandId="ID_BUTTON_STAIRS_LANDING_SKETCH" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Stairs Path; Stair Path" CommandId="ID_BUTTON_STAIRS_PATH" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Finish" CommandId="ID_LAYERSEDITMODE_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Cancel" CommandId="ID_LAYERSEDITMODE_QUIT" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Slope Arrow" CommandId="ID_SKETCH_DEFINE_SLOPE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_SKETCH_PROFILE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_SKETCH_PROFILE" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Axis Line" CommandId="ID_OBJECTS_AXIS" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Fabrication Part" CommandId="ID_FABRICATION_PART_ROUTE_TOGGLE_FABPART_BROWSER" Paths="Contextual Tabs>Change Service; Contextual Tabs>Solutions; Contextual Tabs>Change Size" />
<ShortcutItem CommandName="Finish" CommandId="ID_FABRICATION_NETWORK_CHANGE_SERVICE_FINISH_EDITMODE" Shortcuts="FS" Paths="Contextual Tabs>Change Service" />
<ShortcutItem CommandName="Cancel" CommandId="ID_FABRICATION_NETWORK_CHANGE_SERVICE_CANCEL_EDITMODE" Paths="Contextual Tabs>Change Service" />
<ShortcutItem CommandName="System Inspector" CommandId="ID_RBS_SYSTEM_INSPECTOR_INSPECT" Paths="Contextual Tabs>System Inspector" />
<ShortcutItem CommandName="Finish" CommandId="ID_RBS_SYSTEM_INSPECTOR_FINISH" Shortcuts="FS" Paths="Contextual Tabs>System Inspector" />
<ShortcutItem CommandName="Cancel" CommandId="ID_RBS_SYSTEM_INSPECTOR_CANCEL" Paths="Contextual Tabs>System Inspector" />
<ShortcutItem CommandName="Add to Displacement" CommandId="ID_DISPLACEMENT_ADD_ELEMENT" Paths="Contextual Tabs>Edit Displacement Set" />
<ShortcutItem CommandName="Remove from Displacement" CommandId="ID_DISPLACEMENT_REMOVE_ELEMENT" Paths="Contextual Tabs>Edit Displacement Set" />
<ShortcutItem CommandName="Finish" CommandId="ID_DISPLACEMENT_FINISH_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Edit Displacement Set" />
<ShortcutItem CommandName="Cancel" CommandId="ID_DISPLACEMENT_CANCEL_EDIT" Paths="Contextual Tabs>Edit Displacement Set" />
<ShortcutItem CommandName="Edit Base" CommandId="ID_EDIT_BLEND_BASE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Edit Vertices" CommandId="ID_EDIT_VERTEX_CONNECTIONS" Paths="Contextual Tabs>Mode; Contextual Tabs>Sweep; Contextual Tabs>Swept Blend" />
<ShortcutItem CommandName="Pick New Host; Pick New Host" CommandId="ID_RAILING_SET_HOST" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Edit Joins" CommandId="ID_RAILING_EDIT_JOINS" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Preview" CommandId="ID_RAILING_EDIT_MODE_TOGGLE_PREVIEW" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_RAILPATH_EDITMODE_QUIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_RAILPATH_EDITMODE_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Edit Rail Joins" CommandId="ID_EDIT_CONTINUOUS_RAIL_JOINS" Paths="Contextual Tabs>Joins" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_SWEEP" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_SWEEP" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Sketch Path" CommandId="ID_SKETCH_2D_PATH" Paths="Contextual Tabs>Sweep; Contextual Tabs>Swept Blend" />
<ShortcutItem CommandName="Pick Path" CommandId="ID_PICK_PATH" Paths="Contextual Tabs>Sweep; Contextual Tabs>Swept Blend" />
<ShortcutItem CommandName="Select Profile" CommandId="ID_SWEEP_PROFILE" Paths="Contextual Tabs>Sweep" />
<ShortcutItem CommandName="Edit Profile; Edit Profile" CommandId="Dialog_Essentials_ProfileFamTypeDbar:Control_Essentials_EditSketch" Paths="Contextual Tabs>Sweep; Contextual Tabs>Swept Blend; Contextual Tabs>Profile" />
<ShortcutItem CommandName="Load Profile" CommandId="Dialog_Essentials_ProfileFamTypeDbar:Control_Essentials_LoadFamily" Paths="Contextual Tabs>Sweep; Contextual Tabs>Swept Blend; Contextual Tabs>Profile" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_PICK_BOUNDARY" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_PICK_BOUNDARY" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Pick Roof/ Wall Edges" CommandId="ID_PICK_DORMER_BOUNDARY" Paths="Contextual Tabs>Pick" />
<ShortcutItem CommandName="Add to Group" CommandId="ID_ADD_LIGHT_TO_GROUP" Shortcuts="AG" Paths="Contextual Tabs>Light Group" />
<ShortcutItem CommandName="Remove from Group" CommandId="ID_REMOVE_LIGHT_FROM_GROUP" Paths="Contextual Tabs>Light Group" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_LIGHT_GROUP_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Light Group" />
<ShortcutItem CommandName="Cancel" CommandId="ID_CANCEL_LIGHT_GROUP_EDIT" Paths="Contextual Tabs>Light Group" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_SWEPT_BLEND" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_SWEPT_BLEND" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Select Profile 1" CommandId="ID_SKETCH_PROFILE_1" Paths="Contextual Tabs>Swept Blend" />
<ShortcutItem CommandName="Select Profile 2" CommandId="ID_SKETCH_PROFILE_2" Paths="Contextual Tabs>Swept Blend" />
<ShortcutItem CommandName="Major Direction" CommandId="ID_REBAR_SYSTEM_PICK_DIRSPAN_EDGE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_MERGED_PART_CANCEL_EDIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_MERGED_PART_FINISH_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Add" CommandId="ID_MERGED_PART_ADD" Paths="Contextual Tabs>Merged Parts" />
<ShortcutItem CommandName="Remove" CommandId="ID_MERGED_PART_REMOVE" Paths="Contextual Tabs>Merged Parts" />
<ShortcutItem CommandName="Edit Path" CommandId="ID_EDIT_CONTINUOUS_RAIL_PATH" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Reset Rail" CommandId="ID_RESET_CONTINUOUS_RAIL" Paths="Contextual Tabs>Tools; Contextual Tabs>Continuous Rail" />
<ShortcutItem CommandName="Symbolic Line" CommandId="ID_SKETCH_SHAFTOPENING_SYMBOL" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Add to Selection" CommandId="ID_EDITSFILTER_ADD_TO_FILTER" Paths="Contextual Tabs>Edit Selection" />
<ShortcutItem CommandName="Remove from Selection" CommandId="ID_EDITSFILTER_REMOVE_FROM_FILTER" Paths="Contextual Tabs>Edit Selection" />
<ShortcutItem CommandName="Finish Selection" CommandId="ID_FINISH_SFILTER_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Selection Mode" />
<ShortcutItem CommandName="Cancel Selection" CommandId="ID_CANCEL_SFILTER_EDIT_MODE" Paths="Contextual Tabs>Selection Mode" />
<ShortcutItem CommandName="Add to System" CommandId="ID_RBS_SYSTEM_GROUP_EDIT_ADD_TO_GROUP" Paths="Contextual Tabs>Edit Piping System; Contextual Tabs>Edit Switch System; Contextual Tabs>Edit Duct System" />
<ShortcutItem CommandName="Remove from System" CommandId="ID_RBS_SYSTEM_GROUP_EDIT_REMOVE_FROM_GROUP" Paths="Contextual Tabs>Edit Piping System; Contextual Tabs>Edit Switch System; Contextual Tabs>Edit Duct System" />
<ShortcutItem CommandName="Select Equipment" CommandId="ID_RBS_SYSTEM_GROUP_EDIT_BASE_OBJECT_SELECT" Paths="Contextual Tabs>Edit Piping System; Contextual Tabs>Edit Duct System" />
<ShortcutItem CommandName="Add to Set" CommandId="ID_MECHANICAL_EQUIPMENT_SET_ADD" Paths="Contextual Tabs>Parallel Sets" />
<ShortcutItem CommandName="Remove from Set" CommandId="ID_MECHANICAL_EQUIPMENT_SET_REMOVE" Paths="Contextual Tabs>Parallel Sets" />
<ShortcutItem CommandName="Finish Editing System; Finish Editing Circuit" CommandId="ID_RBS_FINISH_SYSTEM_GROUP_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Cancel Editing System; Cancel Editing Circuit" CommandId="ID_RBS_CANCEL_SYSTEM_GROUP_EDIT_MODE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Add Landings" CommandId="ID_ADD_ALL_LEVEL_LANDINGS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Remove Landings" CommandId="ID_REMOVE_ALL_LEVEL_LANDINGS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_LEVEL_LANDINGS_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Cancel" CommandId="ID_QUIT_LEVEL_LANDINGS_EDIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Set Template Options" CommandId="ID_RBS_PANELSCHEDULE_FORMAT_TEMPLATE" Paths="Contextual Tabs>Template" />
<ShortcutItem CommandName="Remove Parameter" CommandId="ID_PANELSCHEDULE_PARAM_REMOVE" Paths="Contextual Tabs>Parameters" />
<ShortcutItem CommandName="Format Unit" CommandId="ID_PANELSCHEDULE_PARAM_FORMATUNITS" Paths="Contextual Tabs>Parameters" />
<ShortcutItem CommandName="Calculated Value" CommandId="ID_PANELSCHEDULE_PARAM_CALCULATE" Paths="Contextual Tabs>Parameters" />
<ShortcutItem CommandName="Combine Parameters" CommandId="ID_PANELSCHEDULE_PARAM_COMBINE" Paths="Contextual Tabs>Parameters" />
<ShortcutItem CommandName="Freeze Rows and Columns" CommandId="ID_RBS_PANELSCHEDULE_FREEZE_COLANDROW" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Insert Column:Left of Selected" CommandId="ID_PANELSCHEDULE_COLUMN_INSERT_LEFT" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Insert Column:Right of Selected" CommandId="ID_PANELSCHEDULE_COLUMN_INSERT_RIGHT" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Delete Column" CommandId="ID_PANELSCHEDULE_COLUMN_DELETE" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Resize Column" CommandId="ID_PANELSCHEDULE_COLUMN_RESIZE" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Insert Row:Above Selected" CommandId="ID_PANELSCHEDULE_ROW_INSERT_ABOVE" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Insert Row:Below Selected" CommandId="ID_PANELSCHEDULE_ROW_INSERT_BELOW" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Delete Row" CommandId="ID_PANELSCHEDULE_ROW_DELETE" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Resize Row" CommandId="ID_PANELSCHEDULE_ROW_RESIZE" Paths="Contextual Tabs>Columns and Rows" />
<ShortcutItem CommandName="Merge/ Unmerge" CommandId="ID_PANELSCHEDULE_CELL_MERGE_UNMERGE" Paths="Contextual Tabs>Cells" />
<ShortcutItem CommandName="Insert Graphic" CommandId="ID_PANELSCHEDULE_CELL_INSERT_GRAPHIC" Paths="Contextual Tabs>Cells" />
<ShortcutItem CommandName="Edit Borders" CommandId="ID_PANELSCHEDULE_CELL_EDIT_BORDER" Paths="Contextual Tabs>Cells" />
<ShortcutItem CommandName="Edit Shading" CommandId="ID_PANELSCHEDULE_CELL_EDIT_SHADING" Paths="Contextual Tabs>Cells" />
<ShortcutItem CommandName="Edit Font" CommandId="ID_PANELSCHEDULE_TEXT_EDIT_FONT" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Horizontally Align:Left" CommandId="ID_PANELSCHEDULE_TEXT_HORIZONTAL_ALIGN_LEFT" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Horizontally Align:Center" CommandId="ID_PANELSCHEDULE_TEXT_HORIZONTAL_ALIGN_CENTER" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Horizontally Align:Right" CommandId="ID_PANELSCHEDULE_TEXT_HORIZONTAL_ALIGN_RIGHT" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Vertically Align:Top" CommandId="ID_PANELSCHEDULE_TEXT_VERTICAL_ALIGN_TOP" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Vertically Align:Middle" CommandId="ID_PANELSCHEDULE_TEXT_VERTICAL_ALIGN_MIDDLE" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Vertically Align:Bottom" CommandId="ID_PANELSCHEDULE_TEXT_VERTICAL_ALIGN_BOTTOM" Paths="Contextual Tabs>Text" />
<ShortcutItem CommandName="Finish Template" CommandId="ID_RBS_PANELSCHEDULE_TEMPLATEVIEW_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Template Editor" />
<ShortcutItem CommandName="Cancel Template" CommandId="ID_RBS_PANELSCHEDULE_TEMPLATEVIEW_CANCEL" Paths="Contextual Tabs>Template Editor" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_STAIRSEDITMODE_QUIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_STAIRSEDITMODE_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Run" CommandId="ID_STAIRS_RUN" Paths="Contextual Tabs>Components" />
<ShortcutItem CommandName="Landing" CommandId="ID_STAIRS_LANDING" Paths="Contextual Tabs>Components" />
<ShortcutItem CommandName="Support" CommandId="ID_STAIRS_SUPPORT" Paths="Contextual Tabs>Components" />
<ShortcutItem CommandName="Edit Stairs" CommandId="ID_EXIT_PICK_LEVELS_EDITOR" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Connect Levels" CommandId="ID_PICK_LEVELS_ON_STAIRS_CREATION" Paths="Contextual Tabs>Multistory Stairs" />
<ShortcutItem CommandName="Convert to sketch-based" CommandId="ID_STAIRS_CONVERT_TO_CUSTOM" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Edit Sketch; Edit Revolve; Edit Boundary; Edit Sketch; Edit Profile" CommandId="ID_EDIT_SKETCH" Paths="Contextual Tabs>Tools; Contextual Tabs>Mode; Contextual Tabs>Property Lines; Contextual Tabs>Subregion" />
<ShortcutItem CommandName="Flip" CommandId="ID_FLIP_STAIRS_DIRECTION" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Railing" CommandId="ID_SET_RAILINGS_TYPE" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Filter" CommandId="ID_BTN_FILTER_SELECTION" Shortcuts="FF" Paths="Contextual Tabs>Edit Pasted; Contextual Tabs>Selection" />
<ShortcutItem CommandName="Select All" CommandId="ID_SELECT_ALL_PASTED" Paths="Contextual Tabs>Edit Pasted" />
<ShortcutItem CommandName="Finalize Selected" CommandId="ID_FINALIZE_SELECTED_ELEMENTS" Paths="Contextual Tabs>Edit Pasted" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_PASTE_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Edit Pasted" />
<ShortcutItem CommandName="Cancel" CommandId="ID_QUIT_PASTE_EDIT_MODE" Paths="Contextual Tabs>Edit Pasted" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_PICK_PATH" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_PICK_PATH" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Pick 3D Edges" CommandId="ID_PICK_EDGES" Paths="Contextual Tabs>Pick" />
<ShortcutItem CommandName="Beam Direction" CommandId="ID_PICK_DIRSPAN_EDGE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Reset Beam System" CommandId="ID_RESET_JOIST_SYSTEM" Paths="Contextual Tabs>Adjust" />
<ShortcutItem CommandName="Span Direction" CommandId="ID_FLOOR_PICK_DISPAN_EDGE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Auto Floor" CommandId="ID_AUTO_FLOOR" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_PROOF" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Slope Arrow" CommandId="ID_SKETCH_DEFINE_ROOF_SLOPE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Align Eaves" CommandId="ID_SKETCH_ALIGN_EAVES" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Adjust Height" CommandId="Dialog_Essentials_AdjustHeightOrOverhang:Control_Essentials_RadioHeight" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Adjust Overhang" CommandId="Dialog_Essentials_AdjustHeightOrOverhang:Control_Essentials_RadioOverhang" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Previous Solution" CommandId="ID_FABRICATION_PART_ROUTE_PREVIOUS" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Next Solution" CommandId="ID_FABRICATION_PART_ROUTE_NEXT" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Smart Snapping" CommandId="ID_FABRICATION_PART_ROUTE_SMART_SNAPPING" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Cut Into" CommandId="ID_FABRICATION_PART_ROUTE_CUT_INTO" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Finish" CommandId="ID_FABRICATION_PART_ROUTE_FINISH_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Cancel" CommandId="ID_FABRICATION_PART_ROUTE_CANCEL_EDIT_MODE" Paths="Contextual Tabs>Solutions" />
<ShortcutItem CommandName="Move Connector" CommandId="ID_RBS_DRAG_SURFACE_CONNECTOR" Paths="Contextual Tabs>Move Connector" />
<ShortcutItem CommandName="Finish Connection" CommandId="ID_RBS_FINISH_SURFACE_CONNECTOR_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Surface Connection" />
<ShortcutItem CommandName="Cancel Connection" CommandId="ID_RBS_CANCEL_SURFACE_CONNECTOR_EDIT_MODE" Paths="Contextual Tabs>Surface Connection" />
<ShortcutItem CommandName="Edit Top" CommandId="ID_EDIT_BLEND_TOP" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Multi-planar" CommandId="ID_TURN_ON_MULTI_PLANAR_REBAR" Paths="Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Modify" CommandId="ID_RBS_CIRCUIT_GROUP_EDIT_EDIT_PATH" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Path Length" CommandId="ID_PATH_LENGTH" Paths="Contextual Tabs>Edit Path" />
<ShortcutItem CommandName="Path Offset" CommandId="ID_PATH_OFFSET" Paths="Contextual Tabs>Edit Path" />
<ShortcutItem CommandName="Finish Editing Path" CommandId="ID_RBS_FINISH_CIRCUIT_PATH_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Cancel Editing Path" CommandId="ID_RBS_CANCEL_CIRCUIT_PATH_EDIT_MODE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Add Load Area; Back to Existing" CommandId="ID_RBS_AREA_BASED_LOAD_ADD_AREA" Paths="Contextual Tabs>Edit Area Based Load; Contextual Tabs>Divide Area Based Load" />
<ShortcutItem CommandName="Remove Load Area; Move to New" CommandId="ID_RBS_AREA_BASED_LOAD_REMOVE_AREA" Paths="Contextual Tabs>Edit Area Based Load; Contextual Tabs>Divide Area Based Load" />
<ShortcutItem CommandName="Finish Editing" CommandId="ID_RBS_FINISH_AREA_BASED_LOAD_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Cancel Editing" CommandId="ID_RBS_CANCEL_AREA_BASED_LOAD_EDIT_MODE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Top Chord" CommandId="ID_TRUSS_TOP_CHORD_REFERENCE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Bottom Chord" CommandId="ID_TRUSS_BOTTOM_CHORD_REFERENCE" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Edit Layout" CommandId="ID_RBS_LAYOUTPATH_EDIT" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Solutions" CommandId="ID_RBS_LAYOUTPATH_SOLUTIONS" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Add to System" CommandId="ID_RBS_LAYOUTPATH_ADD" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Remove from System" CommandId="ID_RBS_LAYOUTPATH_REMOVE" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Place Base" CommandId="ID_RBS_LAYOUTPATH_BASE" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Remove Base" CommandId="ID_RBS_LAYOUTPATH_BASE_REMOVE" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Modify Base" CommandId="ID_RBS_LAYOUTPATH_BASE_MODIFY" Paths="Contextual Tabs>Modify Layout" />
<ShortcutItem CommandName="Finish Layout" CommandId="ID_RBS_LAYOUTPATH_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Generate Layout" />
<ShortcutItem CommandName="Cancel Layout" CommandId="ID_RBS_LAYOUTPATH_CANCEL" Paths="Contextual Tabs>Generate Layout" />
<ShortcutItem CommandName="Alignment Top Left" CommandId="ID_STRUCT_CONN_OFFSET_REF_TOP_LEFT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Middle Left" CommandId="ID_STRUCT_CONN_OFFSET_REF_MIDDLE_LEFT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Bottom Left" CommandId="ID_STRUCT_CONN_OFFSET_REF_BOTTOM_LEFT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Top Center" CommandId="ID_STRUCT_CONN_OFFSET_REF_TOP_CENTER" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Middle Center" CommandId="ID_STRUCT_CONN_OFFSET_REF_MIDDLE_CENTER" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Bottom Center" CommandId="ID_STRUCT_CONN_OFFSET_REF_BOTTOM_CENTER" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Top Right" CommandId="ID_STRUCT_CONN_OFFSET_REF_TOP_RIGHT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Middle Right" CommandId="ID_STRUCT_CONN_OFFSET_REF_MIDDLE_RIGHT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Alignment Bottom Right" CommandId="ID_STRUCT_CONN_OFFSET_REF_BOTTOM_RIGHT" Paths="Contextual Tabs>Edit Connectivity" />
<ShortcutItem CommandName="Boundary" CommandId="ID_BUTTON_STAIRS_RUN_BOUNDARY" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Riser" CommandId="ID_BUTTON_STAIRS_RISER" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Add to Connection" CommandId="ID_STRUCT_CONNECTION_CUSTOM_EDIT_MODE_ADD" Paths="Contextual Tabs>Edit Custom Connection Type" />
<ShortcutItem CommandName="Remove from Connection" CommandId="ID_STRUCT_CONNECTION_CUSTOM_EDIT_MODE_REMOVE" Paths="Contextual Tabs>Edit Custom Connection Type" />
<ShortcutItem CommandName="Finish" CommandId="ID_STRUCT_CONNECTION_CUSTOM_EDIT_MODE_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Edit Custom Connection Type" />
<ShortcutItem CommandName="Cancel" CommandId="ID_STRUCT_CONNECTION_CUSTOM_EDIT_MODE_CANCEL" Paths="Contextual Tabs>Edit Custom Connection Type" />
<ShortcutItem CommandName="Finish" CommandId="ID_FABRICATION_NETWORK_CHANGE_SIZE_FINISH_EDITMODE" Shortcuts="FS" Paths="Contextual Tabs>Change Size" />
<ShortcutItem CommandName="Cancel" CommandId="ID_FABRICATION_NETWORK_CHANGE_SIZE_CANCEL_EDITMODE" Paths="Contextual Tabs>Change Size" />
<ShortcutItem CommandName="Alignment Line" CommandId="ID_RBS_PICKALIGNMENT_LINE" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Top Left" CommandId="ID_JUSTIFY_TOP_LEFT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Middle Left" CommandId="ID_JUSTIFY_MIDDLE_LEFT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Bottom Left" CommandId="ID_JUSTIFY_BOTTOM_LEFT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Top Center" CommandId="ID_JUSTIFY_TOP_CENTER" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Middle Center" CommandId="ID_JUSTIFY_MIDDLE_CENTER" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Bottom Center" CommandId="ID_JUSTIFY_BOTTOM_CENTER" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Top Right" CommandId="ID_JUSTIFY_TOP_RIGHT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Middle Right" CommandId="ID_JUSTIFY_MIDDLE_RIGHT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Alignment Bottom Right" CommandId="ID_JUSTIFY_BOTTOM_RIGHT" Paths="Contextual Tabs>Justify" />
<ShortcutItem CommandName="Select Switch" CommandId="ID_RBS_SWITCH_SYSTEM_EDIT_SWITCH_SELECT" Paths="Contextual Tabs>Edit Switch System" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_CANCEL_DPART_EDIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_DPART_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Edit Sketch" CommandId="ID_SKETCH_DPART_EDIT" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Intersecting References" CommandId="ID_DIVIDED_VOLUME_INTRST_LIST" Paths="Contextual Tabs>References" />
<ShortcutItem CommandName="Add" CommandId="ID_ADD_ELEMENT_TO_DIVISION" Paths="Contextual Tabs>Divided Parts" />
<ShortcutItem CommandName="Remove" CommandId="ID_REMOVE_ELEMENT_FROM_DIVISION" Paths="Contextual Tabs>Divided Parts" />
<ShortcutItem CommandName="Reference Point" CommandId="ID_PLACE_REF_POINT" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Cancel" CommandId="ID_QUIT_CONNECTED_LEVELS_EDIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_CONNECTED_LEVELS_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Connect Levels" CommandId="ID_ADD_CONNECTED_LEVELS_TO_MULTISTORY_STAIRS" Paths="Contextual Tabs>Multistory Stairs" />
<ShortcutItem CommandName="Disconnect Levels" CommandId="ID_REMOVE_CONNECTED_LEVELS_FROM_MULTISTORY_STAIRS" Paths="Contextual Tabs>Multistory Stairs" />
<ShortcutItem CommandName="Add Space" CommandId="ID_RBS_ZONE_ADD_SPACE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Remove Space" CommandId="ID_RBS_ZONE_REMOVE_SPACE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Editing Zone" CommandId="ID_RBS_FINISH_ZONE_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Edit Zone" />
<ShortcutItem CommandName="Cancel Editing Zone" CommandId="ID_RBS_CANCEL_ZONE_EDIT_MODE" Paths="Contextual Tabs>Edit Zone" />
<ShortcutItem CommandName="Add to Group" CommandId="ID_EDITGROUP_ADD_TO_GROUP" Shortcuts="AP#AG" Paths="Contextual Tabs>Edit Group" />
<ShortcutItem CommandName="Remove from Group" CommandId="ID_EDITGROUP_REMOVE_FROM_GROUP" Shortcuts="RG" Paths="Contextual Tabs>Edit Group" />
<ShortcutItem CommandName="Attach Detail Group" CommandId="ID_EDITGROUP_ATTACH_TO_GROUP" Shortcuts="AD" Paths="Contextual Tabs>Edit Group" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_GROUP_EDIT_MODE" Shortcuts="FG#FS" Paths="Contextual Tabs>Edit Group" />
<ShortcutItem CommandName="Cancel" CommandId="ID_CANCEL_GROUP_EDIT_MODE" Shortcuts="CG" Paths="Contextual Tabs>Edit Group" />
<ShortcutItem CommandName="Add to Group" CommandId="ID_EDITGROUP_ATTACH_ELEM_TO_GROUP" Shortcuts="AG" Paths="Contextual Tabs>Edit Attached Group" />
<ShortcutItem CommandName="Remove from Group" CommandId="ID_EDITGROUP_DETACH_ELEM_FROM_GROUP" Paths="Contextual Tabs>Edit Attached Group" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_ATTACHED_GROUP_EDIT_MODE" Shortcuts="FS" Paths="Contextual Tabs>Edit Attached Group" />
<ShortcutItem CommandName="Cancel" CommandId="ID_CANCEL_ATTACHED_GROUP_EDIT_MODE" Paths="Contextual Tabs>Edit Attached Group" />
<ShortcutItem CommandName="Cancel Edit Mode" CommandId="ID_QUIT_SKETCH_PATH" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Finish Edit Mode" CommandId="ID_FINISH_SKETCH_PATH" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Add to Circuit" CommandId="ID_RBS_CIRCUIT_GROUP_EDIT_ADD_TO_GROUP" Paths="Contextual Tabs>Edit Circuit" />
<ShortcutItem CommandName="Remove from Circuit" CommandId="ID_RBS_CIRCUIT_GROUP_EDIT_REMOVE_FROM_GROUP" Paths="Contextual Tabs>Edit Circuit" />
<ShortcutItem CommandName="Select Panel" CommandId="ID_RBS_CIRCUIT_GROUP_EDIT_PANEL_SELECT" Paths="Contextual Tabs>Edit Circuit" />
<ShortcutItem CommandName="Run" CommandId="ID_RUN" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Boundary" CommandId="ID_BUTTON_STAIRS_BOUNDARY" Paths="Contextual Tabs>Draw" />
<ShortcutItem CommandName="Options" CommandId="ID_CPWTCH_SETTINGS" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Copy" CommandId="ID_CPWTCH_COPY" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Monitor" CommandId="ID_CPWTCH_WATCH" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Batch Copy" CommandId="ID_FIND_FIXTURES" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Finish" CommandId="ID_CPWTCH_FINISH" Shortcuts="FS" Paths="Contextual Tabs>Copy/Monitor" />
<ShortcutItem CommandName="Cancel" CommandId="ID_CPWTCH_QUIT" Paths="Contextual Tabs>Copy/Monitor" />
<ShortcutItem CommandName="Add to Assembly" CommandId="ID_ADD_ELEMENT_TO_ASSEMBLY" Paths="Contextual Tabs>Edit Assembly" />
<ShortcutItem CommandName="Remove from Assembly" CommandId="ID_REMOVE_ELEMENT_FROM_ASSEMBLY" Paths="Contextual Tabs>Edit Assembly" />
<ShortcutItem CommandName="Finish" CommandId="ID_FINISH_ASSEMBLY_EDIT" Shortcuts="FS" Paths="Contextual Tabs>Edit Assembly" />
<ShortcutItem CommandName="Cancel" CommandId="ID_CANCEL_ASSEMBLY_EDIT" Paths="Contextual Tabs>Edit Assembly" />
<ShortcutItem CommandName="Assisted Association" CommandId="ID_ENABLE_ANALYTICAL_ASSISTED_ASSOCIATION" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Auto Ceiling" CommandId="ID_AUTO_CEILING" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Finish Dividing" CommandId="ID_RBS_FINISH_AREA_BASED_LOAD_DIVIDE_MODE" Shortcuts="FS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Cancel Dividing" CommandId="ID_RBS_CANCEL_AREA_BASED_LOAD_DIVIDE_MODE" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Propagate Rebar" CommandId="ID_PROPAGATE_REBAR" Paths="Contextual Tabs>Reinforcement; Contextual Tabs>Host" />
<ShortcutItem CommandName="Area Reinforcement" CommandId="ID_REBAR_SYSTEM_SKETCH_HOST" Paths="Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Path Reinforcement" CommandId="ID_PATH_REIN_SKETCH_HOST" Paths="Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Structural Fabric Area" CommandId="ID_FABRIC_DISTR_SYSTEM_SKETCH_HOST" Paths="Contextual Tabs>Reinforcement" />
<ShortcutItem CommandName="Create Form" CommandId="ID_CREATEFORMELEM" Paths="Contextual Tabs>Form" />
<ShortcutItem CommandName="Create Form:Void Form" CommandId="ID_CREATEVOIDFORM" Paths="Contextual Tabs>Form" />
<ShortcutItem CommandName="Sketch" CommandId="ID_OBJECTS_VOLUME_DIVIDER_SKETCH" Paths="Contextual Tabs>Division" />
<ShortcutItem CommandName="Objects to Divide" CommandId="ID_OBJECTS_VOLUME_DIVIDER_OBJECTS_TO_DIVIDE" Paths="Contextual Tabs>Division" />
<ShortcutItem CommandName="Intersects:Intersects" CommandId="ID_DIVIDED_ELEMENT_INTRST_PICK" Paths="Contextual Tabs>Division; Contextual Tabs>UV Grids and Intersects; Contextual Tabs>Divisions and Intersects" />
<ShortcutItem CommandName="Intersects:Intersecting References; Intersects:Intersects List" CommandId="ID_DIVIDED_ELEMENT_INTRST_LIST" Paths="Contextual Tabs>Division; Contextual Tabs>UV Grids and Intersects; Contextual Tabs>Divisions and Intersects" />
<ShortcutItem CommandName="Reset Manual Edge Offsets" CommandId="ID_CLEAN_MANUALLY_ADJUSTED" Paths="Contextual Tabs>Edge Horizontal Alignment" />
<ShortcutItem CommandName="Edit Division" CommandId="ID_OBJECTS_VOLUME_EDIT_DIVISION" Paths="Contextual Tabs>Part" />
<ShortcutItem CommandName="Edit Merged Part" CommandId="ID_MERGED_PART_EDIT" Paths="Contextual Tabs>Part" />
<ShortcutItem CommandName="Reset Shape" CommandId="ID_OBJECTS_PARTS_RESET" Paths="Contextual Tabs>Part" />
<ShortcutItem CommandName="Divide Parts" CommandId="ID_OBJECTS_DIVIDE" Paths="Contextual Tabs>Part" />
<ShortcutItem CommandName="Merge Parts" CommandId="ID_OBJECTS_MERGE" Paths="Contextual Tabs>Part" />
<ShortcutItem CommandName="Select Host" CommandId="ID_SELECT_HOST" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Pick New Host" CommandId="ID_PICK_HOST_IND_TAG" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Divide Surface" CommandId="ID_OBJECTS_DIVIDED_SURFACE" Shortcuts="//" Paths="Contextual Tabs>Divide" />
<ShortcutItem CommandName="Divide Path" CommandId="ID_DIVIDE_PATH" Paths="Contextual Tabs>Divide" />
<ShortcutItem CommandName="Edit Rail" CommandId="ID_EDIT_CONTINUOUS_RAIL" Paths="Contextual Tabs>Continuous Rail" />
<ShortcutItem CommandName="Reset Railing" CommandId="ID_RESET_RAILING" Paths="Contextual Tabs>Tools" />
<ShortcutItem CommandName="Exclude Parts" CommandId="ID_EXCLUDE_PART" Paths="Contextual Tabs>Exclude" />
<ShortcutItem CommandName="Restore Parts" CommandId="ID_RESTORE_PART" Paths="Contextual Tabs>Exclude" />
<ShortcutItem CommandName="Remove Area Reinforcement System" CommandId="ID_REMOVE_AREA_REINFORCEMENT_SYSTEM" Paths="Contextual Tabs>Area Reinforcement" />
<ShortcutItem CommandName="Remove Path Reinforcement System" CommandId="ID_REMOVE_PATH_REINFORCEMENT_SYSTEM" Paths="Contextual Tabs>Path Reinforcement" />
<ShortcutItem CommandName="Remove Fabric Area Reinforcement System" CommandId="ID_REMOVE_FABRIC_REINFORCEMENT_SYSTEM" Paths="Contextual Tabs>Fabric Area Reinforcement" />
<ShortcutItem CommandName="Select Tag" CommandId="ID_MULTI_REFERENCE_ANNOTATION_SELECT_TAG" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Select Dimension" CommandId="ID_MULTI_REFERENCE_ANNOTATION_SELECT_DIMENSION" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Duct Pressure Loss Report" CommandId="ID_MEP_SELECT_DUCT_PRESSURE_LOSS_REPORT" Paths="Contextual Tabs>Duct System Reports" />
<ShortcutItem CommandName="Pipe Pressure Loss Report" CommandId="ID_MEP_SELECT_PIPE_PRESSURE_LOSS_REPORT" Paths="Contextual Tabs>Pipe System Reports" />
<ShortcutItem CommandName="Air Terminal on Duct" CommandId="ID_RBS_MECHANICAL_DIFFUSER_TO_DUCT" Paths="Contextual Tabs>Layout" />
<ShortcutItem CommandName="Change End Reference" CommandId="ID_CHANGE_BEAM_END_REFERENCE" Paths="Contextual Tabs>Join Tools" />
<ShortcutItem CommandName="Design to Fabrication" CommandId="ID_RBS_CONVERTTO_FABRICATIONPARTS" Paths="Contextual Tabs>Fabrication" />
<ShortcutItem CommandName="Elbows" CommandId="ID_OVERRIDE_FAB_PART_BENDS" Paths="Contextual Tabs>Override" />
<ShortcutItem CommandName="Tees" CommandId="ID_OVERRIDE_FAB_PART_TEES" Paths="Contextual Tabs>Override" />
<ShortcutItem CommandName="Crosses" CommandId="ID_OVERRIDE_FAB_PART_CROSSES" Paths="Contextual Tabs>Override" />
<ShortcutItem CommandName="Restore Size" CommandId="ID_RESTORE_IMAGE_SIZE" Paths="Contextual Tabs>Image" />
<ShortcutItem CommandName="Remove Repeater" CommandId="ID_COMPONENTREPEATER_REMOVEREPEATER" Paths="Contextual Tabs>Repeater" />
<ShortcutItem CommandName="Still Image Study Type" CommandId="ID_SOLAR_STUDY_STILL_TYPE" Paths="Contextual Tabs>Study Type" />
<ShortcutItem CommandName="Single Day Study Type" CommandId="ID_SOLAR_STUDY_SINGLEDAY_TYPE" Paths="Contextual Tabs>Study Type" />
<ShortcutItem CommandName="Multi-day Study Type" CommandId="ID_SOLAR_STUDY_MULTIDAY_TYPE" Paths="Contextual Tabs>Study Type" />
<ShortcutItem CommandName="Lighting Study Type" CommandId="ID_SOLAR_STUDY_LIGHTING_TYPE" Paths="Contextual Tabs>Study Type" />
<ShortcutItem CommandName="Previous Key Frame" CommandId="ID_SOLAR_STUDY_PREVIOUS_KEY_FRAME" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Previous Frame" CommandId="ID_SOLAR_STUDY_PREVIOUS_FRAME" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Next Frame" CommandId="ID_SOLAR_STUDY_NEXT_FRAME" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Next Key Frame" CommandId="ID_SOLAR_STUDY_NEXT_KEY_FRAME" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Play Preview" CommandId="ID_SOLAR_STUDY_PLAY" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Play in Loop" CommandId="ID_SOLAR_STUDY_TOGGLE_SIMULATION" Paths="Contextual Tabs>Preview and Play" />
<ShortcutItem CommandName="Edit Part" CommandId="ID_FABRICATION_PART_TAKEOFF_DIALOG" Shortcuts="EP" Paths="Contextual Tabs>Options; Contextual Tabs>Edit" />
<ShortcutItem CommandName="Rotate Part" CommandId="ID_FABRICATION_PART_PRE_ROTATE" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Toggle Connector" CommandId="ID_FABRICATION_PART_TOGGLE_CONNECTOR" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Insert Part" CommandId="ID_FABRICATION_PART_INSERT" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Connect as Tap" CommandId="ID_FABRICATION_PART_CONNECT_AS_TAP" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Smart Snapping" CommandId="ID_FABRICATION_PART_SMART_SNAPPING" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Show Help Tooltip" CommandId="ID_FABRICATION_PART_SHOW_TOOLTIP" Shortcuts="HT" Paths="Contextual Tabs>Options" />
<ShortcutItem CommandName="Slope" CommandId="ID_RBS_ROUTEPATH_SLOPE1" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Change Service" CommandId="ID_FABRICATION_NETWORK_CHANGE_SERVICE" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Change Size" CommandId="ID_FABRICATION_NETWORK_CHANGE_SIZE" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Optimize Lengths" CommandId="ID_FABRICATION_OPTIMIZE_LENGTH" Paths="Contextual Tabs>Modify" />
<ShortcutItem CommandName="Create PCF" CommandId="ID_EXPORT_FABRICATION_PCF" Paths="Contextual Tabs>Export" />
<ShortcutItem CommandName="Show Service" CommandId="ID_FABRICATION_PART_SHOW_SERVICE_IN_PART_BROWSER" Paths="Contextual Tabs>Parts" />
<ShortcutItem CommandName="Route and Fill" CommandId="ID_FABRICATION_PART_ROUTE_AND_FILL" Paths="Contextual Tabs>Parts" />
<ShortcutItem CommandName="Attach To Structure" CommandId="ID_FABRICATION_HANGER_ATTACH" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Rotate 45°" CommandId="ID_FABRICATION_PART_ROTATE_45DEGREES" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Rotate 90°" CommandId="ID_FABRICATION_PART_ROTATE_90DEGREES" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Rotate 180°" CommandId="ID_FABRICATION_PART_ROTATE_180DEGREES" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Toggle Connector" CommandId="ID_FABRICATION_PART_POST_TOGGLE_CONNECTOR" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Add Vertical" CommandId="ID_FABRICATION_PART_MAINTAIN_SLOPE" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Change Slope" CommandId="ID_FABRICATION_PART_CHANGE_SLOPE" Paths="Contextual Tabs>Edit" />
<ShortcutItem CommandName="Export Job File" CommandId="ID_EXPORT_FAB_MAJ" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Print Reports" CommandId="ID_FABRICATION_PRINT_REPORTS" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Item Reports" CommandId="ID_FABRICATION_ITEM_REPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Ancillary Reports" CommandId="ID_FABRICATION_ANCILLARY_REPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Linear Nest Reports" CommandId="ID_FABRICATION_LINEAR_NEST_REPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Worksheets" CommandId="ID_FABRICATION_WORKSHEET" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Printer Setup" CommandId="ID_FABRICATION_PRINTER_SETUP" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Use Default Printer Setup" CommandId="ID_FABRICATION_USE_DEFAULT_PRINTER_SETUP" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="About this addin" CommandId="ID_FABRICATION_ABOUT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Item Data Export" CommandId="ID_FABRICATION_ITEM_EXPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Ancillary Data Export" CommandId="ID_FABRICATION_ANCILLARY_EXPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Setup Linear Nest Data Export" CommandId="ID_FABRICATION_LINEAR_NEST_EXPORT" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Export Fabrication Data" CommandId="ID_FABRICATION_RUN_EXPORT_DATA" Paths="Contextual Tabs>Output" />
<ShortcutItem CommandName="Create Parameter" CommandId="ID_ADD_PARAMETER" Shortcuts="CP" Paths="Contextual Tabs>Label Dimension" />
<ShortcutItem CommandName="Analytical Connections" CommandId="ID_MEP_ANALYTICAL_PIPE_CONNECTION" Paths="Contextual Tabs>Create" />
<ShortcutItem CommandName="Top Align" CommandId="ID_ALIGN_TOP" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Middle Align" CommandId="ID_ALIGN_MIDDLE" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Bottom Align" CommandId="ID_ALIGN_BOTTOM" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Align Left" CommandId="ID_ALIGN_LEFT" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Align Center" CommandId="ID_ALIGN_CENTER" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Align Right" CommandId="ID_ALIGN_RIGHT" Paths="Contextual Tabs>Alignment" />
<ShortcutItem CommandName="Show border when editing" CommandId="ID_TEXTEDITOR_SHOWBORDER" Paths="Contextual Tabs>Text; Contextual Tabs>Edit Text; Text Editor" />
<ShortcutItem CommandName="Show opaque background when editing" CommandId="ID_TEXTEDITOR_SHOWOPAQUEBK" Paths="Contextual Tabs>Text; Contextual Tabs>Edit Text; Text Editor" />
<ShortcutItem CommandName="Pick New Host" CommandId="ID_CONNECTOR_PICK_HOST" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Edit System" CommandId="ID_MECHANICAL_EQUIPMENT_SET_EDIT_SYSTEM" Paths="Contextual Tabs>System Tools" />
<ShortcutItem CommandName="Add Separation" CommandId="ID_MEP_HYDRAULIC_SEPARATION" Paths="Contextual Tabs>Hydraulic Separation" />
<ShortcutItem CommandName="Remove Separation" CommandId="ID_REMOVE_HYDRAULIC_SEPARATION" Paths="Contextual Tabs>Hydraulic Separation" />
<ShortcutItem CommandName="Edit System-Zone" CommandId="ID_MEP_SYSTEM_ZONE_EDIT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Enable Snaps" CommandId="ID_ENABLE_RASTER_IMAGE_SNAPS" Paths="Contextual Tabs>Image" />
<ShortcutItem CommandName="Update Paths of Travel" CommandId="ID_UPDATE_PATH_OF_TRAVEL" Paths="Contextual Tabs>Analysis" />
<ShortcutItem CommandName="Add Path of Travel Waypoint" CommandId="ID_PATH_OF_TRAVEL_ADD_WAYPOINT" Shortcuts="WW" Paths="Contextual Tabs>Analysis" />
<ShortcutItem CommandName="Delete Path of Travel Waypoint" CommandId="ID_PATH_OF_TRAVEL_DELETE_WAYPOINT" Paths="Contextual Tabs>Analysis" />
<ShortcutItem CommandName="Make Link" CommandId="ID_RASTER_SYMBOLS_MAKE_LINK" Paths="Contextual Tabs>Link Image" />
<ShortcutItem CommandName="Unload Link" CommandId="ID_RASTER_SYMBOLS_UNLOAD_LINK" Paths="Contextual Tabs>Link Image" />
<ShortcutItem CommandName="Load Link" CommandId="ID_RASTER_SYMBOLS_LOAD_LINK" Paths="Contextual Tabs>Link Image" />
<ShortcutItem CommandName="Make Import" CommandId="ID_RASTER_SYMBOLS_MAKE_IMPORT" Paths="Contextual Tabs>Link Image" />
<ShortcutItem CommandName="Edit Assembly" CommandId="ID_RM_ASSEMBLY_EDITOR" Paths="Contextual Tabs>Assembly" />
<ShortcutItem CommandName="Disassemble" CommandId="ID_ASSEMBLY_DISASSEMBLE" Paths="Contextual Tabs>Assembly" />
<ShortcutItem CommandName="Create Views" CommandId="ID_CREATE_SHOP_DRAWING" Paths="Contextual Tabs>Assembly" />
<ShortcutItem CommandName="Acquire Views" CommandId="ID_ACQUIRE_ASSEMBLY_VIEWS" Paths="Contextual Tabs>Assembly" />
<ShortcutItem CommandName="Finish" CommandId="ID_REBAR_FINISH_EDIT_BARS" Shortcuts="FS" Paths="Contextual Tabs>Multiple" />
<ShortcutItem CommandName="Cancel" CommandId="ID_REBAR_CANCEL_EDIT_BARS" Paths="Contextual Tabs>Multiple" />
<ShortcutItem CommandName="Modify Bars" CommandId="ID_REBAR_MODIFY_SET" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Show Removed Bars" CommandId="ID_REBAR_ADD_REMOVE_BARS" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Remove Bar" CommandId="ID_REBAR_REMOVE_BARS" Paths="Contextual Tabs>Customization" />
<ShortcutItem CommandName="Reset Position" CommandId="ID_REBAR_RESET_BARS" Paths="Contextual Tabs>Customization" />
<ShortcutItem CommandName="Reset All" CommandId="ID_REBAR_RESET_ALL_BARS" Paths="Contextual Tabs>Customization" />
<ShortcutItem CommandName="Select All" CommandId="ID_REBAR_SELECT_SHOW_ALL_BARS" Paths="Contextual Tabs>Bars to Keep" />
<ShortcutItem CommandName="Select None" CommandId="ID_REBAR_SELECT_HIDE_ALL_BARS" Paths="Contextual Tabs>Bars to Keep" />
<ShortcutItem CommandName="Edit Area Based Load" CommandId="ID_MEP_ELECTRICAL_ANALYTICAL_LOAD_EDIT" Paths="Contextual Tabs>Analytical Load Tools" />
<ShortcutItem CommandName="Divide Area Based Load" CommandId="ID_MEP_DIVIDE_ELECTRICAL_ANALYTICAL_LOAD" Paths="Contextual Tabs>Analytical Load Tools" />
<ShortcutItem CommandName="Add Load Set" CommandId="ID_MEP_ELECTRICAL_ANALYTICAL_LOAD_SET" Paths="Contextual Tabs>Analytical Load Tools" />
<ShortcutItem CommandName="Show Calculation Report" CommandId="ID_MEP_ELECTRICAL_ANALYTICAL_SHOW_CALC_REPORT" Paths="Contextual Tabs>Analytical Load Tools" />
<ShortcutItem CommandName="Check Changes" CommandId="ID_COORDINATION_CHECK_CHANGES" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Show All Leaders" CommandId="ID_SHOW_ALL_TAG_LEADERS" Paths="Contextual Tabs>Leaders" />
<ShortcutItem CommandName="Show One Leader" CommandId="ID_SHOW_ONE_LEADER" Paths="Contextual Tabs>Leaders" />
<ShortcutItem CommandName="Hide All Leaders" CommandId="ID_HIDE_ALL_TAG_LEADERS" Paths="Contextual Tabs>Leaders" />
<ShortcutItem CommandName="Select Leaders to Show" CommandId="ID_SELECT_VISIBLE_LEADERS" Paths="Contextual Tabs>Leaders" />
<ShortcutItem CommandName="Merge Leaders" CommandId="ID_MERGE_LEADER_ELBOWS" Paths="Contextual Tabs>Leaders" />
<ShortcutItem CommandName="Add Association" CommandId="ID_COORDINATION_ADD_LOCAL_ASSOCIATION" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Applicable Rules" CommandId="ID_COORDINATION_APPLICABLE_RULES" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Highlight Association" CommandId="ID_COORDINATION_HIGHLIGHT_ASSOCIATIONS" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Remove Association" CommandId="ID_COORDINATION_REMOVE_ASSOCIATION" Paths="Contextual Tabs>Coordination" />
<ShortcutItem CommandName="Edit Style" CommandId="ID_MODIFY_ANALYSIS_DISPLAY_STYLE" Paths="Contextual Tabs>Style" />
<ShortcutItem CommandName="Tag Rebar" CommandId="ID_BENDING_DETAIL_TAG_REBAR" Paths="Contextual Tabs>Tag" />
<ShortcutItem CommandName="Align to Bar" CommandId="ID_BENDING_DETAIL_ORTHO_PLACEMENT" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Parallel To View" CommandId="ID_BENDING_DETAIL_PARALLEL_TO_VIEW" Paths="Contextual Tabs>Mode" />
<ShortcutItem CommandName="Select Host" CommandId="ID_BENDING_DETAIL_SELECT_HOST" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Pick New Host" CommandId="ID_BENDING_DETAIL_PICK_HOST" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Select Multiple" CommandId="ID_BENDING_DETAIL_SELECT_MULTIPLE" Paths="Contextual Tabs>Multiple Selection" />
<ShortcutItem CommandName="Clear Selection" CommandId="ID_BENDING_DETAIL_CLEAR_SELECTION" Paths="Contextual Tabs>Multiple Selection" />
<ShortcutItem CommandName="Create Details" CommandId="ID_BENDING_DETAIL_CREATE_MULTIPLE" Paths="Contextual Tabs>Multiple Selection" />
<ShortcutItem CommandName="Pick Primary Host" CommandId="IDC_PICK_MAIN_HOST" Paths="Contextual Tabs>Host" />
<ShortcutItem CommandName="Change Template" CommandId="ID_PANELSCHEDULE_CHANGE_A_TEMPLATE" Paths="Contextual Tabs>Template" />
<ShortcutItem CommandName="Duct" CommandId="Dialog_BuildingSystems_RbsCreateHvacSystemGroup:Control_BuildingSystems_RbsCreateDuctSystem" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Power" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreatePowerCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Data" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateDataCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Telephone" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateTelephoneCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Security" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateSecurityCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Fire Alarm" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateFireAlarmCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Nurse Call" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateNurseCallCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Controls" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateControlsCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Communication" CommandId="Dialog_BuildingSystems_RbsCreateCircuitGroup:Control_BuildingSystems_RbsCreateCommunicationCircuit" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Piping" CommandId="Dialog_BuildingSystems_RbsCreatePipingSystemGroup:Control_BuildingSystems_RbsCreatePipingSystem" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="Switch" CommandId="ID_RBS_CREATE_SYSTEM_GROUP" Paths="Contextual Tabs>Create Systems" />
<ShortcutItem CommandName="System Inspector" CommandId="Dialog_BuildingSystems_RbsSystemInspectBar:Control_BuildingSystems_RbsSystemInspectorInspect" Paths="Contextual Tabs>Analysis" />
<ShortcutItem CommandName="Duct/Pipe Sizing" CommandId="Dialog_BuildingSystems_RbsDuctSizingBar:Control_BuildingSystems_RbsBtnSizing" Paths="Contextual Tabs>Analysis" />
<ShortcutItem CommandName="Edit System" CommandId="Dialog_BuildingSystems_RbsEditSystemGroup:Control_BuildingSystems_RbsEditSystemGroup" Paths="Contextual Tabs>System Tools" />
<ShortcutItem CommandName="Select Equipment" CommandId="Dialog_BuildingSystems_RbsEditSystemGroup:Control_BuildingSystems_RbsEditSystemGroupSelectBaseObject" Paths="Contextual Tabs>System Tools" />
<ShortcutItem CommandName="Disconnect Equipment" CommandId="Dialog_BuildingSystems_RbsEditSystemGroup:Control_BuildingSystems_RbsDisconnectBaseObject" Paths="Contextual Tabs>System Tools" />
<ShortcutItem CommandName="Divide System" CommandId="Dialog_BuildingSystems_RbsEditSystemGroup:Control_BuildingSystems_SplitHvacSystemGroup" Paths="Contextual Tabs>System Tools" />