The information in this document is useful if you are trying to programmatically find a built-in command, menu, or toolbar. The ICommandBars::Find and ICommandBar::Find methods can be used to get a reference to a specific toolbar, menu, or command. Both of these methods require the UID of the object you are trying to find.
There is built-in module called ArcID in the VBA project for the Normal template in ArcMap. This module is a utility for finding the UID of the built-in commands, menus, and toolbars. You pass the name of a command, menu, or toolbar in as an argument to ArcID and the UID of that item is returned. However, in order to use the ArcID module you need to know the name of the object. If you know the caption (the text that appears in the user interface) of the command, menu, or toolbar, then you can use this table to look up the name and then use that name in the ArcID module. For example, the following VBA macro uses the ArcID module to get the UID of the Save command for the Find method and then executes the command.
Sub ExecuteCmd()
Dim pCmdItem As ICommandItem
' Use ArcID module and the Name of the Save command
Set pCmdItem = Application.Document.CommandBars.Find(arcid.File_Save)
pCmdItem.Execute
End Sub
Alternatively, you can write your own code to get the UID of the object instead of using the ArcID module. For example, the following VBA macro creates a UID object and sets the value of the UID to GUID of the Save command, passes that UID into the Find method, and then executes the command. Note, if the command is a subtype then you also have to set the SubType property on IUID to the subtype value.
Sub ExecuteCmd2()
Dim pUID As New UID
Dim pCmdItem As ICommandItem
' Use the GUID of the Save command
pUID.Value = "{119591DB-0255-11D2-8D20-080009EE4E51}"
' or you can use the ProgID
' pUID.Value = "esriArcMapUI.MxFileMenuItem"
pUID.SubType = 3
Set pCmdItem = Application.Document.CommandBars.Find(pUID)
pCmdItem.Execute
End Sub
This table contains the following information:
- Caption, name, and GUID of all the built-in toolbars in ArcMap.
- Caption, name, GUID, and parent of all the built-in menus in ArcMap.
- Caption, name, command category (category in the Customize dialog), GUID, SubType, parent, and description of all the built-in commands that appear on the toolbars and menus in ArcMap.
| Type | Caption | Name | Command Category | GUID (CLSID / ProgID) | Sub Type | Parent | Description |
|---|---|---|---|---|---|---|---|
| Toolbar | Main Menu | Main Menu | none | {1E739F59-E45F-11D1-9496-080009EEBECB} esriArcMapUI.MxMenuBar | none | none | none |
| Menu | File | File_Menu | none | {56599DD3-E464-11D1-9496-080009EEBECB} esriArcMapUI.MxFileMenu | none | Main Menu | none |
| Command | New | File_New | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 1 | File_Menu | Create a new map |
| Command | Open | File_Open | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 2 | File_Menu | Open an existing map |
| Command | Save | File_Save | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 3 | File_Menu | Save the current map |
| Command | Save As | File_SaveAs | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 4 | File_Menu | Save the current map with a new name |
| Command | Save A Copy | File_SaveCopyAs | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 12 | File_Menu | Saves a copy of the current map document with the option of saving to a previous version. |
| Command | Add Data | File_AddData | File | {E1F29C6B-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.AddDataCommand | none | File_Menu | Add new data to the map's active data frame |
| Menu | Add Data From GIS Portal | AddInternetData_Menu | none | {5B43EFCE-8C6F-49FF-8B77-0C769AB4A5F0} esriArcMapUI.AddInternetDataMenu | none | File_Menu | none |
| Command | Geography Network | IMS_ManageInternetDataURL | IMS | {C454EBA4-2DFD-49C7-BF8F-B42F9240B050} esriArcMapUI.AddInternetDataMenuItem | 3 | AddInternetData_Menu | Add data from the Geography Network GIS portal |
| Command | { Add Data From GIS Portal } | { IMS_AddInternetDataMenu } | none | {6888A697-86CB-4AC1-BCBF-6D888B9085AA} esriArcMapUI.AddInternetDataURLMenuItem | none | AddInternetData_Menu | none |
| Command | Add Website | IMS_NewInternetDataURL | IMS | {C454EBA4-2DFD-49C7-BF8F-B42F9240B050} esriArcMapUI.AddInternetDataMenuItem | 1 | AddInternetData_Menu | Add a GIS portal into this menu |
| Command | Manage Websites | IMS_ManageInternetDataURL | IMS | {C454EBA4-2DFD-49C7-BF8F-B42F9240B050} esriArcMapUI.AddInternetDataMenuItem | 2 | AddInternetData_Menu | Manage Metadata Explorer websites |
| Command | Page and Print Setup | File_PageSetup | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 5 | File_Menu | Specify page size and orientation |
| Command | Print Preview | File_PrintPreview | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 6 | File_Menu | Preview how the map will print out |
| Command | File_Print | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 7 | File_Menu | Print the current map | |
| Command | Document Properties | File_Properties | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 8 | File_Menu | Display the map properties |
| Command | Import from ArcView project | File_AVImport | File | {60672A17-DE7B-11D3-9FD4-00C04F6BC78E} esriArcMapUI.AVImportCommand | none | File_Menu | Imports selected documents from an ArcView 3.2 project |
| Command | Export Map | File_Export | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 9 | File_Menu | Export map to graphics file |
| Command | { Recent files } | { File_RecentFiles } | none | {BF4121B8-175C-11D2-8D23-080009EE4E51} esriArcMapUI.MxRecentFiles | none | File_Menu | none |
| Command | Exit | File_Exit | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 10 | File_Menu | Exit the application |
| Menu | Edit | Edit_Menu | none | {119591BE-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxEditMenu | none | Main Menu | none |
| Command | Undo | Edit_Undo | Edit | {FBF8C3FB-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxEditMenuItem | 1 | Edit_Menu | Undo the last action |
| Command | Redo | Edit_Redo | Edit | {FBF8C3FB-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxEditMenuItem | 2 | Edit_Menu | Redo the previously undone action |
| Command | Cut | Edit_Cut | Edit | {A33D9406-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditCutCommand | none | Edit_Menu | Cut the selected element(s) |
| Command | Copy | Edit_Copy | Edit | {A33D9405-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditCopyCommand | none | Edit_Menu | Copy the selected element(s) |
| Command | Paste | Edit_Paste | Edit | {A33D9407-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditPasteCommand | none | Edit_Menu | Paste the clipboard contents into your map |
| Command | Paste Special | PageLayout_EditPasteSpecial | Edit | {D4416555-9920-11D2-AD03-0000F87808EE} esriArcMapUI.EditPasteSpecialCommand | none | Edit_Menu | Paste the clipboard contents using the format you specify |
| Command | Delete | Edit_Clear | Edit | {16CD71E5-98C3-11D1-873B-0000F8751720} esriArcMapUI.EditClearCommand | none | Edit_Menu | Delete the selected element(s) |
| Command | Copy Map To Clipboard | PageLayout_EditCopyMap | Edit | {57610896-4F78-11D2-AAAB-000000000000} esriArcMapUI.EditCopyMapCommand | none | Edit_Menu | Copy the map to the clipboard |
| Command | Find | ControlToolsMapInquiry_Find | Map Inquiry | {CE9BB1E9-B2D4-4442-8A81-42478C81B256} esriControls.ControlsMapFindCommand | none | Edit_Menu | Finds features, places and addresses on the map |
| Command | Go To XY | ControlToolsMapNavigation_GoTo | Map Navigation | {C397D829-522B-490F-8249-0219EA53CFBC} esriControls.ControlsMapGoToCommand | none | Edit_Menu | Find XY Locations in a map |
| Command | Select All Elements | Edit_SelectAll | Edit | {161496AD-AC99-11D2-87F8-0000F8751720} esriArcMapUI.EditSelectAllCommand | none | Edit_Menu | Selects all text, graphics and other objects placed on the map |
| Command | Unselect All Elements | Edit_UnselectAll | Edit | {B3350335-1FAC-4B53-B689-A750502B0F55} esriArcMapUI.EditUnselectAllCommand | none | Edit_Menu | Clear element selection |
| Command | Zoom to Selected Elements | PageLayout_ZoomToSelectedGraphics | Page Layout | {5D3E617C-13B6-4C7F-AB10-423DE02A2411} esriArcMapUI.ZoomToSelectedGraphicsCommand | none | Edit_Menu | Zoom to selected elements |
| Menu | View | View_Menu | none | {119591C1-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxViewMenu | none | Main Menu | none |
| Command | Data View | View_Geographic | View | {65702489-A258-11D1-8740-0000F8751720} esriArcMapUI.GeographicViewCommand | none | View_Menu | Switches to data view |
| Command | Layout View | View_LayoutView | View | {6570248A-A258-11D1-8740-0000F8751720} esriArcMapUI.LayoutViewCommand | none | View_Menu | Switches to layout view |
| Menu | Zoom Data | ZoomData_Menu | none | {E370A1CF-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomDataMenu | none | View_Menu | none |
| Command | Fixed Zoom In | PanZoom_ZoomInFixed | Pan/Zoom | {0830FB33-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.ZoomInFixedCommand | none | ZoomData_Menu | Zoom in on the center of your map |
| Command | Fixed Zoom Out | PanZoom_ZoomOutFixed | Pan/Zoom | {0830FB34-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.ZoomOutFixedCommand | none | ZoomData_Menu | Zoom out on the center of your map |
| Command | Full Extent | PanZoom_FullExtent | Pan/Zoom | {0830FB35-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.FullExtentCommand | none | ZoomData_Menu | Zooms to the full extent of the map |
| Command | Go Back To Previous Extent | PanZoom_ZoomToLastExtentBack | Pan/Zoom | {3A372DD1-3ECB-11D2-A2A3-080009B6F22B} esriArcMapUI.ZoomToLastExtentBackCommand | none | ZoomData_Menu | Go back to previous extent |
| Command | Go To Next Extent | PanZoom_ZoomToLastExtentForward | Pan/Zoom | {8FD414A2-403F-11D2-A2A9-080009B6F22B} esriArcMapUI.ZoomToLastExtentForwardCommand | none | ZoomData_Menu | Go forward to next extent |
| Command | Zoom To Selected Features | Query_ZoomToSelected | Selection | {AB073B49-DE5E-11D1-AA80-00C04FA37860} esriArcMapUI.ZoomToSelectedCommand | none | ZoomData_Menu | Zoom to the selected features in all layers |
| Menu | Zoom Layout | ZoomLayout_Menu | none | {E370A1D0-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenu | none | View_Menu | none |
| Command | Zoom to Whole Page | View_ZoomWholePage | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 1 | ZoomLayout_Menu | Zoom to Whole Page |
| Command | Zoom to 25% | View_Zoom25 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 2 | ZoomLayout_Menu | Zoom to 25% |
| Command | Zoom to 50% | View_Zoom50 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 3 | ZoomLayout_Menu | Zoom to 50% |
| Command | Zoom to 75% | View_Zoom75 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 4 | ZoomLayout_Menu | Zoom to 75% |
| Command | Zoom to 100% | View_Zoom100 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 5 | ZoomLayout_Menu | Zoom to 100% |
| Command | Zoom to 200% | View_Zoom200 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 6 | ZoomLayout_Menu | Zoom to 200% |
| Command | Zoom to 400% | View_Zoom400 | View | {E370A1D1-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxZoomLayoutMenuItem | 7 | ZoomLayout_Menu | Zoom to 400% |
| Menu | Bookmarks | BookMarks_Menu | none | {E370A1CD-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxBookmarksMenu | none | View_Menu | none |
| Command | Create | View_InsertSpatialBookmark | View | {E370A1CE-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxBookmarksMenuItem | 1 | BookMarks_Menu | Create a Spatial Bookmark |
| Command | Manage | View_EditBookmark | View | {E370A1CE-4CD6-11D2-AAA8-000000000000} esriArcMapUI.MxBookmarksMenuItem | 2 | BookMarks_Menu | Rename or delete spatial bookmarks |
| Command | { Bookmarks } | { Tools_BookMarkMenu } | none | {75872BE2-4277-11D2-AE1F-080009EC732A} esriArcMapUI.MxBookmarkMenuItem | none | BookMarks_Menu | none |
| Menu | Toolbars | none | {10BAA9F9-1C2F-11D2-94B6-080009EEBECB} esriFramework.ToolbarContextMenu | none | View_Menu | none | |
| Command | { } | { } | none | {2AE639DD-1C2F-11D2-94B6-080009EEBECB} esriFramework.ToolbarContextMenuItems | none | none | |
| Command | Customize | Untitled | Tools | {8807BD31-6947-11D2-8D4C-080009EE4E51} esriFramework.CustomizeCommand | none | Customize the user interface | |
| Command | View Source | Untitled | none | {1B2D63B1-12A9-11D2-AA21-000000000000} esriFramework.CustContextMenuItems | 9 | Displays the VBA source code for the selected control | |
| Command | Status Bar | View_StatusBar | View | {FBF8C40A-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxViewMenuItem | 1 | View_Menu | Show or hide the status bar |
| Command | Overflow Annotation | View_OverFlowLabels | View | {FBF8C40A-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxViewMenuItem | 2 | View_Menu | Display Overflow Annotation Window |
| Command | Scrollbars | PageLayout_HideShowScrollbars | Page Layout | {92D490BA-DF9D-11D1-8779-0000F8751720} esriArcMapUI.HideShowScrollbarsCommand | none | View_Menu | Hide or show the scrollbars |
| Command | Rulers | PageLayout_HideShowRulers | Page Layout | {92D490B9-DF9D-11D1-8779-0000F8751720} esriArcMapUI.HideShowRulersCommand | none | View_Menu | Hide or show rulers in Layout view |
| Command | Guides | PageLayout_HideShowSnapGuides | Page Layout | {92D490BB-DF9D-11D1-8779-0000F8751720} esriArcMapUI.HideShowSnapGuidesCommand | none | View_Menu | Hide or show guides in Layout view |
| Command | Grid | PageLayout_HideShowSnapGrid | Page Layout | {92D490BD-DF9D-11D1-8779-0000F8751720} esriArcMapUI.HideShowSnapGridCommand | none | View_Menu | Hide or show grid in Layout view |
| Command | Data Frame Properties | View_Properties | View | {FBF8C40A-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxViewMenuItem | 3 | View_Menu | Set Data Frame properties |
| Menu | Insert | Insert_Menu | none | {119591C4-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxInsertMenu | none | Main Menu | none |
| Command | Data Frame | PageLayout_NewMap | Page Layout | {C22579D5-BC17-11D0-8667-0000F8751720} esriArcMapUI.NewMapCommand | none | Insert_Menu | Create a new data frame |
| Command | Title | PageLayout_InsertTitle | Page Layout | {EB70D0B3-0FA4-11D3-9F82-00C04F6BC78E} esriArcMapUI.InsertTitleCommand | none | Insert_Menu | Insert a map title in Layout view |
| Command | Text | PageLayout_InsertText | Page Layout | {EB70D0B2-0FA4-11D3-9F82-00C04F6BC78E} esriArcMapUI.InsertTextCommand | none | Insert_Menu | Insert text |
| Command | Neatline | PageLayout_Neatline | Page Layout | {F0877F6E-4B93-4544-95AD-5C4F021B171E} esriArcMapUI.NeatlineCommand | none | Insert_Menu | Add a neatline to the layout |
| Command | Legend | PageLayout_NewLegend | Page Layout | {99D21D79-B475-11D1-8753-0000F8751720} esriArcMapUI.NewLegendCommand | none | Insert_Menu | Insert a legend in Layout view |
| Command | North Arrow | PageLayout_NewNorthArrow | Page Layout | {99D21D7A-B475-11D1-8753-0000F8751720} esriArcMapUI.NewNorthArrowCommand | none | Insert_Menu | Insert a north arrow in Layout view |
| Command | Scale Bar | PageLayout_NewScaleBar | Page Layout | {99D21D77-B475-11D1-8753-0000F8751720} esriArcMapUI.NewScaleBarCommand | none | Insert_Menu | Insert a scale bar in Layout view |
| Command | Scale Text | PageLayout_NewScaleText | Page Layout | {99D21D78-B475-11D1-8753-0000F8751720} esriArcMapUI.NewScaleTextCommand | none | Insert_Menu | Insert a text description of the scale in Layout view |
| Command | Picture | Picture | Page Layout | {5F933B51-C053-11D2-9F22-00C04F6BC8DD} esriArcMapUI.NewPictureCommand | none | Insert_Menu | Insert a picture |
| Command | Object | Insert_Object | Insert | {FBF8C408-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxInsertMenuItem | 1 | Insert_Menu | Insert a new embedded object |
| Menu | Selection | Selection_Menu | none | {EB70D0AF-0FA4-11D3-9F82-00C04F6BC78E} esriArcMapUI.MxSelectionMenu | none | Main Menu | none |
| Command | Select By Attributes | Query_AttributeSelect | Selection | {54EBEEE6-DC82-11D1-AA7F-00C04FA37860} esriArcMapUI.AttributeSelectCommand | none | Selection_Menu | Selects features by their attribute values |
| Command | Select By Location | Query_SelectByLayer | Selection | {82B9951B-DD63-11D1-AA7F-00C04FA37860} esriArcMapUI.SelectByLayerCommand | none | Selection_Menu | Selects features using the location of features in another layer |
| Command | Select By Graphics | Query_SelectByGraphics | Selection | {57610895-4F78-11D2-AAAB-000000000000} esriArcMapUI.SelectByGraphicsCommand | none | Selection_Menu | Select features that are intersected by the selected graphics |
| Command | Zoom To Selected Features | Query_ZoomToSelected | Selection | {AB073B49-DE5E-11D1-AA80-00C04FA37860} esriArcMapUI.ZoomToSelectedCommand | none | Selection_Menu | Zoom to the selected features in all layers |
| Command | Pan To Selected Features | Layer_PanToSelection | Layer | {BF64319A-9062-11D2-AE71-080009EC732A} esriArcMapUI.FeatureLayerContextMenuItems | 16 | Selection_Menu | Pans to the location of the selected feature(s) |
| Command | Statistics | Query_SelectionStatistics | Selection | {3E58D6D0-DF7A-11D1-ADD9-080009EC732A} esriArcMapUI.SelectionStatisticsCommand | none | Selection_Menu | Displays statistics for the selected features |
| Command | Set Selectable Layers | Query_SelectableLayers | Selection | {06C532B2-051E-43C3-A3B7-4C9DE569373A} esriArcMapUI.SelectableLayersCommand | none | Selection_Menu | Choose which layers interactive selection will select features from |
| Command | Clear Selected Features | Query_ClearSelection | Selection | {37C833F3-DBFD-11D1-AA7E-00C04FA37860} esriArcMapUI.ClearSelectionCommand | none | Selection_Menu | Unselect the currently selected features in all layers |
| Menu | Interactive Selection Method | SelectionType_Menu | none | {8841A0D9-4F49-11D2-AE2D-080009EC732A} esriArcMapUI.SelectionTypeMenu | none | Selection_Menu | none |
| Command | Create New Selection | Query_SelectFeatures | Selection | {8841A0DA-4F49-11D2-AE2D-080009EC732A} esriArcMapUI.SelectionTypeMenuItem | 1 | SelectionType_Menu | Create New Selection |
| Command | Add to Current Selection | Query_AddToCurrentSelection | Selection | {8841A0DA-4F49-11D2-AE2D-080009EC732A} esriArcMapUI.SelectionTypeMenuItem | 2 | SelectionType_Menu | Add to Current Selection |
| Command | Remove From Current Selection | Query_RemoveFromCurrentSelection | Selection | {8841A0DA-4F49-11D2-AE2D-080009EC732A} esriArcMapUI.SelectionTypeMenuItem | 3 | SelectionType_Menu | Remove from Current Selection |
| Command | Select From Current Selection | Query_SelectFromCurrentSelection | Selection | {8841A0DA-4F49-11D2-AE2D-080009EC732A} esriArcMapUI.SelectionTypeMenuItem | 4 | SelectionType_Menu | Select from Current Selection |
| Command | Options | Query_SelectionOptions | Selection | {EB70D0B0-0FA4-11D3-9F82-00C04F6BC78E} esriArcMapUI.SelectionOptionsCommand | none | Selection_Menu | Choose selection options such as highlight color |
| Menu | Tools | Tools_Menu | none | {119591CB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxToolsMenu | none | Main Menu | none |
| Command | Editor Toolbar | Tools_EditingToolbar | Tools | {E1F29C74-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.EditingToolbarCommand | none | Tools_Menu | Show the Editor toolbar so you can edit the map's data |
| Menu | Graphs | DataGraphOptions_Menu | none | {4C6E6A2B-DD8A-11D3-A661-0008C7DF88DB} esriArcMapUI.DataGraphOptionsMenu | none | Tools_Menu | none |
| Command | Create | DataGraph_Create | DataGraph | {4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB} esriArcMapUI.DataGraphOptionsMenuItem | 1 | DataGraphOptions_Menu | Creates a new Graph |
| Command | Manage | DataGraph_Manage | DataGraph | {4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB} esriArcMapUI.DataGraphOptionsMenuItem | 2 | DataGraphOptions_Menu | Manage Graphs |
| Command | Load | DataGraph_Load | DataGraph | {4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB} esriArcMapUI.DataGraphOptionsMenuItem | 3 | DataGraphOptions_Menu | Load Graph |
| Command | { Graphs } | { Tools_DataGraphMenu } | none | {809868AF-DF2A-11D3-A664-0008C7DF88DB} esriArcMapUI.DataGraphMenuItem | none | DataGraphOptions_Menu | none |
| Menu | Reports | Reports_Menu | none | {C545B528-4216-4A5A-B7E5-4FC17DA4C3C9} esriArcMapUI.ReportsMenu | none | Tools_Menu | none |
| Command | Create Report | ReportObject_CreateReport | Report Object | {0A6FBDFB-AB21-11D2-926E-080009F90551} esriReportWriter.clsReportCommand | none | Reports_Menu | Create a Report |
| Command | Crystal Report Wizard | ReportObject_CrystalReportWizard | Report Object | {2D6D4F87-1789-4690-A6FF-88243038404A} CRWizard.ReportCommand | none | Reports_Menu | Create a report using Crystal Reports |
| Menu | Geocoding | Geocode_Menu | none | {0EE3DF3A-8361-4435-9BD8-A3249563FC27} esriLocationUI.MxGeocodeMenu | none | Tools_Menu | none |
| Command | Geocode Addresses | GeocodeAddresses_Command | Geocoding | {5495175F-1C83-11D4-9F7D-00C04F8ED1C4} esriLocationUI.MxGeocodeAddressesCommand | none | Geocode_Menu | Geocode a table of addresses |
| Menu | Review/Rematch Addresses | Mx_RematchAddressesMenu | none | {DADF1866-415E-49CD-B80F-B14FBFD2E5C8} esriLocationUI.MxRematchAddressesMenu | none | Geocode_Menu | none |
| Command | { Review/Rematch Addresses } | { Mx_RematchAddressMenuItems } | none | {CE33CDBC-F3DF-47AB-A125-2FE312CD94A6} esriLocationUI.MxRematchAddressesMenuItems | none | Mx_RematchAddressesMenu | none |
| Command | Address Locator Manager | LocatorManager_Command | Geocoding | {B5D3AB84-EED1-11D3-9F76-00C04F8ED1C4} esriLocationUI.MxLocatorManagerCommand | none | Geocode_Menu | Bring up the Address Locator Manager dialog |
| Command | Add XY Data | Tools_AddXYData | Tools | {55425B75-2CE4-4909-B40A-CFE50FAD1896} esriLocationUI.AddXYDataCommand | none | Tools_Menu | Adds a new map layer based on XY events from a table |
| Command | Add Route Events | Lr_AddRouteEvents | Linear Referencing | {6E6364B6-9ED5-4C0C-BEF1-F489F20597BE} esriLocationUI.AddRouteEventsCommand | none | Tools_Menu | Adds a new map layer based on route events from a table |
| Command | ArcCatalog | Tools_Catalog | Tools | {E1F29C71-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.CatalogCommand | none | Tools_Menu | Launch ArcCatalog |
| Menu | ArcWeb Services | ControlToolsGeneric_ArcWebMenu | none | {55CD8BBF-5920-44D4-B24E-24B9050ABB64} esriControls.ControlsArcWebMenu | none | Tools_Menu | none |
| Command | Sign in to ArcWeb Services | ControlToolsGeneric_ConnectToArcWeb | ArcWeb Services | {CD29D155-7D2C-4F80-9EF3-3F25F18B889F} esriControls.ControlsArcWebConnectionCommand | none | ControlToolsGeneric_ArcWebMenu | Sign in to ArcWeb Services using your user name and password |
| Command | Find Route | ControlToolsGeneric__FindRoute | ArcWeb Services | {42B27C5B-DBFA-4205-BBF9-6514C869251A} esriControls.ControlsRouteCommand | none | ControlToolsGeneric_ArcWebMenu | Find routes between locations you specify and generate driving directions |
| Command | Find Nearby Places | ControlToolsGeneric_NearbyPlaces | ArcWeb Services | {5BFAA184-6F51-49E3-BF07-B73E918142FF} esriControls.ControlsNearbyPlacesCommand | none | ControlToolsGeneric_ArcWebMenu | Find places located near a origin on the map |
| Command | My ArcWeb Services Account | ControlToolsGeneric_ArcWebMyAccountCommand | ArcWeb Services | {FABC7D04-1462-47A8-90B6-C00F5D8F1D8F} esriControls.ControlsArcWebMyAccountCommand | none | ControlToolsGeneric_ArcWebMenu | Manage your ArcWeb Service's Account |
| Command | About ArcWeb Services | ControlToolsGeneric_ArcWebAboutCommand | ArcWeb Services | {9A969388-E4F8-44FF-B0B8-EA805EDAB54F} esriControls.ControlsArcWebAboutCommand | none | ControlToolsGeneric_ArcWebMenu | About ArcWeb Services |
| Command | My Places | ControlToolsGeneric_MyPlaces | Generic | {138C5B5B-439C-4DA0-8EF8-78B61F94A70A} esriControls.ControlsMyPlacesCommand | none | Tools_Menu | Create and work with a list of your frequently used addresses, locations and features |
| Menu | Macros | Macros_Menu | none | {119591D5-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxMacrosMenu | none | Tools_Menu | none |
| Command | Macros | Tools_Macros | Tools | {12FA7CAF-07AA-11D2-8D22-080009EE4E51} esriArcMapUI.MxMacrosMenuItem | 1 | Macros_Menu | Create, edit or execute a VBA macro |
| Command | Visual Basic Editor | Tools_VBIDE | Tools | {12FA7CAF-07AA-11D2-8D22-080009EE4E51} esriArcMapUI.MxMacrosMenuItem | 2 | Macros_Menu | Display the Visual Basic Editor |
| Command | Customize | Untitled | Tools | {8807BD31-6947-11D2-8D4C-080009EE4E51} esriFramework.CustomizeCommand | none | Tools_Menu | Customize the user interface |
| Command | Extensions | ExtensionsCommand | Tools | {F647BE13-ECCF-4D32-8B04-72CB28CEAE7C} esriFramework.ExtensionsCommand | none | Tools_Menu | Manipulates the extensions |
| Menu | Styles | StyleOptions_Menu | none | {10F9032D-EBDE-11D2-AB0D-000000000000} esriArcMapUI.StyleOptionsMenu | none | Tools_Menu | none |
| Command | Style References | Tools_StyleReferences | Tools | {10F9032E-EBDE-11D2-AB0D-000000000000} esriArcMapUI.StyleOptionsMenuItem | 1 | StyleOptions_Menu | Choose which styles will be available for use in this map |
| Command | Style Manager | Tools_StyleManager | Tools | {10F9032E-EBDE-11D2-AB0D-000000000000} esriArcMapUI.StyleOptionsMenuItem | 2 | StyleOptions_Menu | Browse and manage the contents of styles |
| Command | Export Map Styles | Tools_ExportMapStyles | Tools | {10F9032E-EBDE-11D2-AB0D-000000000000} esriArcMapUI.StyleOptionsMenuItem | 3 | StyleOptions_Menu | Exports the symbols and colors of the current map to a style |
| Command | Options | Tools_Options | Tools | {D74B2F25-AC90-11D2-87F8-0000F8751720} esriArcMapUI.OptionsCommand | none | Tools_Menu | Modify ArcMap settings |
| Menu | Window | Window_Menu | none | {119591CF-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxWindowMenu | none | Main Menu | none |
| Command | { New } | { Window_NewWindowItems } | none | {A01B0EA3-0A06-11D2-8D22-080009EE4E51} esriArcMapUI.MxNewWindowMenuItem | none | Window_Menu | none |
| Command | Table Of Contents | View_Contents | View | {E1F29C6D-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.ShowTOCCommand | none | Window_Menu | Display the Table Of Contents window listing the map's layers |
| Command | ArcToolbox | ArcToolbox_ShowToolbox | ArcToolbox | {85980C3A-652A-47ED-8CD2-1B99DD060AAB} esriGeoprocessingUI.ArcToolboxCmd | none | Window_Menu | Show/Hide the ArcToolbox Window |
| Command | Command Line | ArcToolbox_ShowCommandLine | ArcToolbox | {1A7E7146-BDFB-4755-93DE-100171382BFF} esriGeoprocessingUI.GPCommandLineCmd | none | Window_Menu | Show/Hide the Command Line Window |
| Command | { Application Windows } | { Window_AppWindowsItems } | none | {8B95B33A-E92B-11D2-9F58-00C04F6BC78E} esriArcMapUI.AppWindowsMenuItem | none | Window_Menu | none |
| Menu | Help | Help_Menu | none | {119591D1-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxHelpMenu | none | Main Menu | none |
| Command | ArcGIS Desktop Help | Help_Contents | Help | {DFD4A705-B83F-45FB-820B-2C633AF6F325} esriFramework.HelpContentsCommand | none | Help_Menu | Display the help topics for ArcGIS |
| Command | ArcGIS Desktop Help Online | Help_ArcGISDesktopHelpOnline | Help | {4B6B8DA1-19B0-4289-AF9D-16FB23647D5D} esriFramework.HelpMenuItem | 6 | Help_Menu | Go to the ArcGIS Desktop Help web page |
| Command | What's This? | Help_ContextHelp | Help | {81972F0D-388A-11D3-9F57-00C04F6BC61A} esriFramework.HelpTool | none | Help_Menu | Get help on the menu command or tool you select |
| Command | GIS Dictionary | Help_GIS_Dictionary | Help | {4B6B8DA1-19B0-4289-AF9D-16FB23647D5D} esriFramework.HelpMenuItem | 1 | Help_Menu | Go to the GIS Dictionary web page |
| Command | ESRI Support Center | Help_Support_Center | Help | {4B6B8DA1-19B0-4289-AF9D-16FB23647D5D} esriFramework.HelpMenuItem | 2 | Help_Menu | Go to the ESRI Support Center web page |
| Command | ESRI Training | Help_Training_InstructorLed | Help | {4B6B8DA1-19B0-4289-AF9D-16FB23647D5D} esriFramework.HelpMenuItem | 4 | Help_Menu | Go to the ESRI Training web page |
| Command | ESRI Developer Network | Help_ArcGIS_Developer | Help | {4B6B8DA1-19B0-4289-AF9D-16FB23647D5D} esriFramework.HelpMenuItem | 3 | Help_Menu | Go to the ESRI Developer Network web page |
| Command | About ArcMap | Help_About_ArcMap | Help | {7E4CF9FA-6FDA-441C-B91D-76CFED5E1BF7} esriArcMapUI.MxHelpAbout | none | Help_Menu | Get information about this application |
| Toolbar | 3D Analyst | 3DAnalyst_Toolbar | none | {3FA6313B-7EB4-11D4-A10D-00508BD60CB9} esri3DAnalystUI.DDDAnalystToolBar | none | none | none |
| Menu | 3D Analyst | 3DAnalyst_Menu | none | {DD4BB1D3-7F5C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystMenu | none | 3DAnalyst_Toolbar | none |
| Menu | Create/Modify TIN | 3DAnalyst_Create_Menu | none | {28BADA19-8DAC-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystCreateMenu | none | 3DAnalyst_Menu | none |
| Command | Create TIN From Features | 3DAnalyst_TinBuilder | 3D Analyst | {2AD7EAEB-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystTinBuilderCommand | none | 3DAnalyst_Create_Menu | Create TIN by inputing features |
| Command | Add Features to TIN | 3DAnalyst_AddToTin | 3D Analyst | {2AD7EAEC-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystAddToTinCommand | none | 3DAnalyst_Create_Menu | Add features to TIN |
| Menu | Interpolate to Raster | 3DAnalyst_Interpolate_Menu | none | {28BADA18-8DAC-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystInterpolateMenu | none | 3DAnalyst_Menu | none |
| Command | Inverse Distance Weighted | Analysis_IDW | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 1 | 3DAnalyst_Interpolate_Menu | Interpolate a surface from points using an inverse distance weighted technique |
| Command | Spline | Analysis_Spline | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 2 | 3DAnalyst_Interpolate_Menu | Interpolate a surface from points using a minimum curvature spline technique |
| Command | Kriging | Analysis_Kriging | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 3 | 3DAnalyst_Interpolate_Menu | Interpolate a surface from points using Kriging |
| Command | Natural Neighbors | 3DAnalyst_NaturalNeighbor | 3D Analyst | {2AD7EAED-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystNaturalNeighborCommand | none | 3DAnalyst_Interpolate_Menu | Create surface from a natural neighbor interpolation |
| Menu | Surface Analysis | 3DAnalyst_Surface_Menu | none | {28BADA15-8DAC-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystSurfaceMenu | none | 3DAnalyst_Menu | none |
| Command | Contour | Analysis_Contour | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 1 | 3DAnalyst_Surface_Menu | Creates contours or isolines from a surface |
| Command | Slope | Analysis_Slope | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 2 | 3DAnalyst_Surface_Menu | Derives slope from a surface |
| Command | Aspect | Analysis_Aspect | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 3 | 3DAnalyst_Surface_Menu | Derives aspect from a surface |
| Command | Hillshade | Analysis_HillShade | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 4 | 3DAnalyst_Surface_Menu | Computes hillshade values for a surface |
| Command | Viewshed | Analysis_Viewshed | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 5 | 3DAnalyst_Surface_Menu | Determines the surface locations visible to a set of input points |
| Command | Cut/Fill | Analysis_CutFill | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 6 | 3DAnalyst_Surface_Menu | Computes the cut and fill volume and area of two surfaces |
| Command | Area and Volume | 3DAnalyst_AreaVolume | 3D Analyst | {2AD7EAEE-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystAreaVolumeCommand | none | 3DAnalyst_Surface_Menu | Calculates area and volume above or below a reference plane. |
| Command | Reclassify | Analysis_Reclass | Surface | {448796F6-2452-11D3-9F48-00C04F8ED1D7} esriSpatialAnalystUI.SAReclassMenuItem | 1 | 3DAnalyst_Menu | Reclassifies the values in a raster |
| Menu | Convert | 3DAnalyst_Conversion_Menu | none | {28BADA16-8DAC-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystConversionMenu | none | 3DAnalyst_Menu | none |
| Command | Features to 3D | 3DAnalyst_FeaturesTo3D | 3D Analyst | {2AD7EAEF-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystFeaturesTo3DCommand | none | 3DAnalyst_Conversion_Menu | Converts features into 3D |
| Command | Raster to Features | Conversion_ToFeatureClass | Surface | {B9857142-3A19-11D3-9F4C-00C04F8ED1D7} esriSpatialAnalystUI.SAConversionMenuItem | 2 | 3DAnalyst_Conversion_Menu | Converts a raster to features (points, lines, polygons) |
| Command | Raster to TIN | 3DAnalyst_RasterToTin | 3D Analyst | {2AD7EAF0-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystRasterToTinCommand | none | 3DAnalyst_Conversion_Menu | Converts a raster to a TIN |
| Command | TIN to Raster | 3DAnalyst_TinToRaster | 3D Analyst | {2AD7EAF1-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystTinToRasterCommand | none | 3DAnalyst_Conversion_Menu | Converts a TIN to a raster |
| Command | TIN to Features | 3DAnalyst_TinToFeatures | 3D Analyst | {2AD7EAF2-98A5-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystTinToFeaturesCommand | none | 3DAnalyst_Conversion_Menu | Converts a TIN to features |
| Command | Options | Analysis_Settings | Surface | {8AC2F519-ED49-11D2-9F40-00C04F8ED1D7} esriSpatialAnalystUI.RasterSettingsItem | none | 3DAnalyst_Menu | Displays a dialog box to edit the analysis properties |
| Command | 3D Analyst Layer List Control | 3DAnalyst_LayerListControl | 3D Analyst | {2D73B144-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystLayerListControl | none | 3DAnalyst_Toolbar | 3D Analyst Layer List Control |
| Command | Contour Tool | 3DAnalyst_Contour | 3D Analyst | {28BADA1A-8DAC-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystContourTool | none | 3DAnalyst_Toolbar | Generates the contour that passes through a query point |
| Command | Steepest Path Tool | 3DAnalyst_SteepPath | 3D Analyst | {2D73B141-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystSteepPathTool | none | 3DAnalyst_Toolbar | Generates the steepest path down from a point |
| Command | Line of Sight Tool | 3DAnalyst_LineofSight | 3D Analyst | {2D73B145-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystLineofSightTool | none | 3DAnalyst_Toolbar | Generates a line of sight between observer and target points |
| Command | Interpolate Point Tool | 3DAnalyst_InterpolatePoint | 3D Analyst | {2D73B146-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystInterpolatePointTool | none | 3DAnalyst_Toolbar | Interpolates a 3D point from the selected surface |
| Command | Interpolate Line Tool | 3DAnalyst_InterpolateLine | 3D Analyst | {2D73B147-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystInterpolateLineTool | none | 3DAnalyst_Toolbar | Creates a 3D line by interpolating heights from the selected surface |
| Command | Interpolate Polygon Tool | 3DAnalyst_InterpolatePolygon | 3D Analyst | {2D73B148-8F1C-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystInterpolatePolygonTool | none | 3DAnalyst_Toolbar | Creates a 3D polygon (boundary) by interpolating heights from the selected surface |
| Command | Profile Graph Tool | 3DAnalyst_ProfileGraph | 3D Analyst | {E765E905-9310-11D4-A10F-00508BD60CB9} esri3DAnalystUI.DDDAnalystProfileGraphCommand | none | 3DAnalyst_Toolbar | Make a profile graph of the selected 3d polyline. |
| Command | ArcScene | 3DView_Scene | 3D View | {BD98B4B3-DA9C-11D3-9F71-00C04F6BC619} esri3DAnalystUI.SceneCommand | none | 3DAnalyst_Toolbar | Launch ArcScene |
| Command | ArcGlobe | GlobeView_Globe | Globe View | {EAC009E5-88A1-4A7C-B4A5-6D8A3D426200} esriGlobeCoreUI.ArcGlobeCommand | none | 3DAnalyst_Toolbar | Launch ArcGlobe |
| Toolbar | Advanced Editing | AdvancedEditingToolbar | none | {98B0451D-2D7F-4893-9832-88C9D87C7026} esriEditor.AdvancedEditingToolbar | none | none | none |
| Command | Copy Features Tool | Editor_CopyFeaturesTool | Advanced Edit Tools | {CBD6B94D-653A-4C4E-9B01-218C1F782DE1} esriEditor.CopyFeaturesTool | none | AdvancedEditingToolbar | Drag a box to transform the selected features to fit into the area. |
| Command | Fillet | Editor_FilletTool | Advanced Edit Tools | {D84AF5AA-1E86-441A-BEC3-A300A0484E71} esriEditor.FilletTool | none | AdvancedEditingToolbar | The Fillet Tool allows you to place an arc tangent to two segments. |
| Command | Extend | Editor_ExtendTool | Advanced Edit Tools | {2D2B60F6-60C8-4AD6-8C38-1DD3E1A7F45C} esriEditor.ExtendTool | none | AdvancedEditingToolbar | Extends a line feature to meet the selected feature. |
| Command | Trim | Editor_TrimTool | Advanced Edit Tools | {94129272-F504-4405-8243-E4148410AF7C} esriEditor.TrimTool | none | AdvancedEditingToolbar | Trims a line feature that is cut by a selected feature. |
| Command | Line Intersection | Editor_LineIntersectionTool | Advanced Edit Tools | {A1493DF8-E08D-44BC-A6FF-07C8619683AE} esriEditor.LineIntersectionTool | none | AdvancedEditingToolbar | Intersect features at either explicit or implied intersections. |
| Command | Explode Multi-part Feature | Editor_ExplodeCommand | Advanced Edit Tools | {D48CAA0D-2661-4303-A2DA-99C1C5D5FB94} esriEditor.ExplodeCommand | none | AdvancedEditingToolbar | Explodes a multi-part feature into separate features |
| Command | Generalize | Editor_GeneralizeCommand | Advanced Edit Tools | {E820DFD0-02F4-4FF2-B8A3-4BDCD0D2BD64} esriEditor.GeneralizeCommand | none | AdvancedEditingToolbar | Generalizes the selected line and polygon features |
| Command | Smooth | Editor_SmoothCommand | Advanced Edit Tools | {6185F30D-1B9A-470D-A52F-E37482D677FB} esriEditor.SmoothCommand | none | AdvancedEditingToolbar | Smoothes the selected line and polygon features |
| Command | Rectangle | Editor_RectangleTool | Advanced Edit Tools | {6F0ED2CC-C099-4895-BD7E-BEEC2F78ADBF} esriEditor.RectangleTool | none | AdvancedEditingToolbar | Creates a rectangle. |
| Command | Circle | Editor_CircleTool | Advanced Edit Tools | {09C6F589-A3CE-48AB-81BC-46965C58F264} esriEditor.CircleTool | none | AdvancedEditingToolbar | Creates a circle. |
| Toolbar | Animation | Animation_ToolBar | none | {9A00FF78-85FA-47DA-A63B-ABEC2268627F} esriAnimationUI.AnimationToolBar | none | none | none |
| Menu | Animation | Animation_Menu | none | {9D800203-79C0-4AA5-A5AB-50A42D26816E} esriAnimationUI.AnimationMenu | none | Animation_ToolBar | none |
| Command | Clear Animation | Animation_Delete | Animation | {57BC2C2D-5FE4-4DDF-8518-7E24A41C46F6} esriAnimationUI.AnimationDeleteCommand | none | Animation_Menu | Clear the animation tracks |
| Command | Create Keyframe | Animation_CreateKeyframe | Animation | {950CC4B4-2865-4477-BC90-B47BEC787B1E} esriAnimationUI.AnimationCreateKeyframeCommand | none | Animation_Menu | Create a new animation keyframe |
| Command | Create Group Animation | Animation_LayerGroup | Animation | {773AB9A8-41D1-48C2-9334-C6610D658696} esriAnimationUI.AnimationLayerGroupCommand | none | Animation_Menu | Create a group animation from selected layers |
| Command | Create Flyby from Path | Animation_CreateFromPath | Animation | {7C5325EC-B37F-4E7C-B9A3-740CF8A75F8A} esriAnimationUI.AnimationFlyFromPathCommand | none | Animation_Menu | Create a view animation track from a selected path |
| Command | Load Animation File | Animation_Open | Animation | {70E7F641-1589-4D13-9FC2-C341FA8FF4C0} esriAnimationUI.AnimationOpenFileCommand | none | Animation_Menu | Load an animation file into the scene |
| Command | Save Animation File | Animation_Save | Animation | {C1264170-89B1-48B2-B3AD-D7CF65E23D62} esriAnimationUI.AnimationSaveFileCommand | none | Animation_Menu | Save the scene animation to a file |
| Command | Export to Video | Animation_ExportAnimation | Animation | {3B30EABC-B9A8-453C-9D43-E980C726196A} esriAnimationUI.AnimationExportCommand | none | Animation_Menu | Export the scene animation to a video file |
| Command | Animation Manager | Animation_Manage | Animation | {CB9F62CD-1DCC-4AAC-BCB2-57FCCB7D94CB} esriAnimationUI.AnimationManagerCommand | none | Animation_Menu | Open the animation manager dialog |
| Command | Capture View | Animation_CaptureView | Animation | {4FCB51A6-22E2-4D1D-95C6-DC49BB27651C} esriAnimationUI.AnimationCaptureViewCommand | none | Animation_ToolBar | Capture the current extent to an animation |
| Command | Animation Controls | Animation_Controls | Animation | {4DBEE091-195D-4915-9221-062AE949AAA7} esriAnimationUI.AnimationControlsCommand | none | Animation_ToolBar | Open animation playing and recording controls |
| Toolbar | Annotation | AnnotationToolbar | none | {4383EF2D-9A23-49FC-ACB9-12BB661F3B67} esriEditor.AnnotationToolbar | none | none | none |
| Command | Edit Annotation Tool | Editor_AnnoEditTool | Advanced Edit Tools | {3B883F4A-D150-4BD6-900B-FD43C8ABF5C4} esriEditor.AnnoEditTool | none | AnnotationToolbar | Edits annotation features |
| Command | Construct Horizontal Annotation | Horizontal_Annotation_Command | Advanced Edit Tools | {5CD2E6E9-2D36-454F-A176-94DA23104641} esriEditor.HorizontalAnnotationCommand | none | AnnotationToolbar | Sets up the editor to construct horizontal annotation. |
| Command | Construct Straight Annotation | Straight_Annotation_Command | Advanced Edit Tools | {C1707859-3435-453D-ACEB-F86C5FA3E858} esriEditor.StraightAnnotationCommand | none | AnnotationToolbar | Sets up the editor to construct straight annotation. |
| Command | Construct Annotation With A Leader Line | LeaderLine_Annotation_Command | Advanced Edit Tools | {D7FA82CD-0933-4AAE-AC15-0C1C0B4A609C} esriEditor.LeaderLineAnnotationCommand | none | AnnotationToolbar | Sets up the editor to construct annotation with a leader line. |
| Command | Annotation Constructors | Annotation Constructors | Advanced Edit Tools | {FA9FA291-B496-4742-A305-45EFA7E222B6} esriEditor.AnnotationConstructorControl | none | AnnotationToolbar | Select the construction method used to create new annotation. |
| Command | Annotation Constructor Text | Annotation Text | Advanced Edit Tools | {C7D5DB14-1A2F-44CD-B11C-15EB83EBFD28} esriEditor.AnnotationTextControl | none | AnnotationToolbar | Enter the text used to create the new annotation. |
| Command | Annotation Symbols | Annotation Symbols | Advanced Edit Tools | {51E93830-581C-43EF-B28F-AEB84485B59D} esriEditor.AnnotationSymbolControl | none | AnnotationToolbar | Selects the annotation symbol used for new annotation features. |
| Command | Unplaced Annotation Window | UnplacedAnnoWindowCommand | Advanced Edit Tools | {40965749-B024-41E4-895C-4B3872B7356E} esriEditor.UnplacedAnnoWindowCommand | none | AnnotationToolbar | Show or hide the unplaced annotation window |
| Toolbar | ArcPad | ArcPadTrans_TransToolBar | none | {C377D597-CE59-4534-8FD4-AD01D6C17154} esriEditorExt.APTransToolbar | none | none | none |
| Command | Get Data For ArcPad | ArcPadCheckinCheckout_Checkout | ArcPad | {0B955860-A3AD-466B-9518-428762583A03} esriEditorExt.APCheckoutCommand | none | ArcPadTrans_TransToolBar | Copies data for use in ArcPad. Also checks out database layers for editing. |
| Command | Check In Edits From ArcPad | ArcPadCheckinExport_Checkin | ArcPad | {5C963B87-BEBA-47BB-90C5-62470FD8EB7F} esriEditorExt.APCheckinCommand | none | ArcPadTrans_TransToolBar | Checks in edits made to data in ArcPad. |
| Command | Undo Check Out For Editing. | ArcPadUndoCheckoutExport_UndoCheckout | ArcPad | {6B9E8F2E-E158-4987-BDFA-907D44128E71} esriEditorExt.APUndoCheckoutCommand | none | ArcPadTrans_TransToolBar | Undo check out of data checked out for editing in ArcPad. |
| Toolbar | ArcScan | ArcScan_VectorizationToolBar | none | {AE1120FB-0694-49EE-8241-B8B088EB679F} esriArcScan.VectorizationToolBar | none | none | none |
| Command | ArcScan Raster Layer | ArcScan_TargetLayerControl | ArcScan | {81112F1C-62EC-44CB-BAEC-F3F125D58197} esriArcScan.TargetLayerControl | none | ArcScan_VectorizationToolBar | The raster layer that will be used for vectorization, snapping and cleanup operations. |
| Command | Raster Snapping Options | ArcScan_Snapping_Options | ArcScan | {3013D403-B1E1-4549-88E8-317800632796} esriArcScan.RasterSnappingOptionsCommand | none | ArcScan_VectorizationToolBar | Opens the raster snapping options dialog. |
| Menu | Vectorization | ArcScan_VectorizationMenu | none | {B2335572-8C05-4C59-8C53-A0D61E1FD94F} esriArcScan.VectorizationMenu | none | ArcScan_VectorizationToolBar | none |
| Command | Vectorization Settings | ArcScan_OptionsDialogCommand | ArcScan | {59681BD4-FE13-44D4-8F1E-DCE331F481A3} esriArcScan.VectorizationSettingsDialogCommand | none | ArcScan_VectorizationMenu | Shows or hides the vectorization settings modeless dialog. |
| Command | Show Preview | ArcScan_ShowPreview | ArcScan | {CB62CB4C-7311-4082-BE22-722C96A0CDD1} esriArcScan.VectorizationPreviewCommand | none | ArcScan_VectorizationMenu | Show preview of the vectorization result for the current extent. |
| Command | Generate Features | ArcScan_Vectorize | ArcScan | {B839739F-451F-4660-A608-96AAF0B708BA} esriArcScan.VectorizeCommand | none | ArcScan_VectorizationMenu | Create features from the raster. |
| Command | Options | ArcScan_Options | ArcScan | {8B181677-4A96-40F3-B243-D147BF79DCED} esriArcScan.VectorizationOptionsCommand | none | ArcScan_VectorizationMenu | Opens the vectorization options dialog. |
| Command | Generate Features Inside Area | ArcScan_VectorizeArea | ArcScan | {F4CDAED0-63E7-4E49-9308-46F043B4529B} esriArcScan.VectorizeAreaTool | none | ArcScan_VectorizationToolBar | Vectorizes features inside a polygonal area. |
| Command | Vectorization Trace | ArcScan_Trace | ArcScan | {AF5A55F5-F5BA-4CC6-901A-059DA7E2F2F3} esriArcScan.RasterTraceTool | none | ArcScan_VectorizationToolBar | Trace and vectorize raster linear features. |
| Command | Vectorization Trace Between Points | ArcScan_Trace | ArcScan | {23B0A943-F01D-40D7-B5F4-79ADEF23AFEE} esriArcScan.RasterTraceTool2 | none | ArcScan_VectorizationToolBar | Trace and vectorize raster linear features. |
| Command | Shape Recognition | ArcScan_ShapeRecognition | ArcScan | {ACDA6C39-738A-4AEB-818E-BE1A5E55685D} esriArcScan.RasterShapeRecognitionTool | none | ArcScan_VectorizationToolBar | Vectorize square, rectangle, circle and elliptical shapes. |
| Menu | Raster Cleanup | ArcScan_RasterCleanupMenu | none | {BEC0D42D-3690-4372-845F-A620398979E6} esriArcScan.RasterCleanupMenu | none | ArcScan_VectorizationToolBar | none |
| Command | Start Cleanup | ArcScan_StartCleanup | ArcScan | {304D5758-8AAC-4053-912F-1BA6249EF8CF} esriArcScan.StartCleanupCommand | none | ArcScan_RasterCleanupMenu | Starts Raster Cleanup Session |
| Command | Stop Cleanup | ArcScan_StopCleanup | ArcScan | {CC8C4E6F-29AC-4527-B5DE-62E302CE429B} esriArcScan.StopCleanupCommand | none | ArcScan_RasterCleanupMenu | Stops Raster Cleanup Session |
| Command | Raster Painting Toolbar | ArcScan_CleanupToolbar | ArcScan | {8DBF6146-9057-40EA-82D7-58587933E0D9} esriArcScan.RasterCleanupToolbarCommand | none | ArcScan_RasterCleanupMenu | Displays the raster painting toolbar |
| Command | Erase Selected Cells | ArcScan_EraseSelectionCommand | ArcScan | {B37F474D-C4A4-4102-A798-E8BF61DB353B} esriArcScan.VectorizationEraseSelectionCommand | none | ArcScan_RasterCleanupMenu | Erase selection with the background color. |
| Command | Fill Selected Cells | ArcScan_FillSelectionCommand | ArcScan | {84CD46C4-6AF8-43F2-BAAF-0CD9B3C9DA6A} esriArcScan.VectorizationFillSelectionCommand | none | ArcScan_RasterCleanupMenu | Fill selection with the foreground color. |
| Command | Erosion | ArcScan_MorphologicalCommand | ArcScan | {14AFF506-E6AF-4868-ABA4-1E4BAD14B024} esriArcScan.VectorizationMorphologicalErosionCommand | none | ArcScan_RasterCleanupMenu | Erode or thin the foreground cells by a number of pixels. |
| Command | Dilation | ArcScan_MorphologicalCommand | ArcScan | {18C9C9EB-FBAA-4D52-9252-837FF784196D} esriArcScan.VectorizationMorphologicalDilationCommand | none | ArcScan_RasterCleanupMenu | Dilate or grow the foreground cells by a number of pixels. |
| Command | Opening | ArcScan_MorphologicalCommand | ArcScan | {1A1D4B7E-FD01-4703-B4E0-BB711338BCE6} esriArcScan.VectorizationMorphologicalOpeningCommand | none | ArcScan_RasterCleanupMenu | Erode then Dilate the foreground cells by a number of pixels. |
| Command | Closing | ArcScan_MorphologicalCommand | ArcScan | {1B37AE4C-6580-43A4-AC63-4960E0F2377E} esriArcScan.VectorizationMorphologicalClosingCommand | none | ArcScan_RasterCleanupMenu | Dilate then Erode the foreground cells by a number of pixels. |
| Command | Save | ArcScan_SaveCleanup | ArcScan | {413DCCA0-7619-4BAD-86D8-4FC3A0A31E18} esriArcScan.SaveCleanupCommand | none | ArcScan_RasterCleanupMenu | Saves any pending raster cleanup edits |
| Command | Save As | ArcScan_SaveCleanupAs | ArcScan | {479E754E-2E61-4EA8-859D-6176D7B4EA02} esriArcScan.SaveCleanupAsCommand | none | ArcScan_RasterCleanupMenu | Saves raster with a new name |
| Menu | Cell Selection | ArcScan_CellSelectionMenu | none | {64525DC9-F6D3-48EA-98C4-F331033EC5E8} esriArcScan.VectorizationCellSelectionMenu | none | ArcScan_VectorizationToolBar | none |
| Command | Select Connected Cells | ArcScan_SelectByGeometry | ArcScan | {05DC9882-C037-4F04-BDB7-958132F5F8C3} esriArcScan.VectorizationSelectByGeometryCommand | none | ArcScan_CellSelectionMenu | Select connected cells based on geometry. |
| Menu | Interactive Selection Target | ArcScan_SelectionsMenu | none | {AACB49FD-85C9-4CFF-9719-8D9CD9845611} esriArcScan.VectorizationSelectionsMenu | none | ArcScan_CellSelectionMenu | none |
| Command | { Selection Types } | { Vectorization_SelectionMultiMenu } | none | {5A6D431C-ADC1-4F0E-AAAC-3D313F62A482} esriArcScan.VectorizationSelectionMultiItem | none | ArcScan_SelectionsMenu | none |
| Command | Clear Selected Cells | ArcScan_ClearSelectionCommand | ArcScan | {7EB10858-DC1E-486D-98FE-61E3F3A3E9B2} esriArcScan.VectorizationClearSelectionCommand | none | ArcScan_CellSelectionMenu | Clear the selected cell selection. |
| Command | Save Selection As | ArcScan_SaveSelectionAs | ArcScan | {B694DA0E-014C-47BF-BADB-21D16C0BC97C} esriArcScan.VectorizationSaveSelectionAsCommand | none | ArcScan_CellSelectionMenu | Saves the current connected cell selection to a new raster file. |
| Command | Select Connected Cells | ArcScan_Select | ArcScan | {A90B423C-9D7F-475D-81DB-627EB6C82194} esriArcScan.VectorizationSelectTool | none | ArcScan_VectorizationToolBar | Selects connected cells. |
| Command | Find Connected Cell Area | ArcScan_Area | ArcScan | {77F9B641-A12F-4202-A4C2-7A96C924E1C5} esriArcScan.VectorizationAreaTool | none | ArcScan_VectorizationToolBar | Find connected cell area. |
| Command | Find Diagonal of the Envelope of Connected Cells | ArcScan_Diagonal | ArcScan | {D9442B05-5DD2-4DA3-86FB-110EBB71A2F8} esriArcScan.VectorizationDiagonalTool | none | ArcScan_VectorizationToolBar | Find diagonal of the envelope of connected cells. |
| Command | Raster Line Width | ArcScan_LineWidth | ArcScan | {27E54ABE-2B58-445B-9A1C-D59EEA1D7517} esriArcScan.VectorizationLineWidthTool | none | ArcScan_VectorizationToolBar | Find the width of a raster line feature. |
| Toolbar | COGO | COGOToolbar | none | {0101CB95-495A-4ECD-B6F1-C32BFFF17DF9} esriEditor.COGOToolbar | none | none | none |
| Command | Traverse | Editor_TraverseWindowCommand | Advanced Edit Tools | {957F26DD-9798-47BC-AA9E-1C6B10328175} esriEditor.TraverseWindowCommand | none | COGOToolbar | Shows the Traverse window. |
| Command | Construct 2-Point Line | Editor_ConstructTwoPointLineCommand | Advanced Edit Tools | {E58659BA-5A77-4C2F-9AE6-0B2700475F03} esriEditor.ConstructTwoPointLineCommand | none | COGOToolbar | Constructs a 2-Point line feature using COGO methods. |
| Command | Offset Line | Editor_OffsetLineCommand | Advanced Edit Tools | {CBC22CCF-F251-437C-A2BB-3F3DC3335352} esriEditor.OffsetLineCommand | none | COGOToolbar | Create a line at a specified distance and perpendicular offset from a selected line. |
| Command | Construct a cul-de-sac | CulDeSacCommand | Advanced Edit Tools | {70DDBB82-919D-4E68-BABA-B1BFB6C02874} esriEditor.CulDeSacCommand | none | COGOToolbar | Construct a symmetrical or asymmetrical cul-de-sac from a street centerline. |
| Command | Proportion | Editor_ProportionCommand | Advanced Edit Tools | {F0351581-29B7-46A6-A3C2-E601B66691B0} esriEditor.ProportionCommand | none | COGOToolbar | Splits the selected feature proportionally. |
| Command | Ground to Grid Correction | GroundToGridCorrectionCommand | Advanced Edit Tools | {7851E9DD-9FF8-4670-9CBB-914780603920} esriEditor.GroundToGridCorrectionCommand | none | COGOToolbar | View and change the current direction offset and distance factor. |
| Command | COGO Report | COGOReportCommand | Advanced Edit Tools | {400CFDBF-7F40-4514-94BD-F32052A2E7FA} esriEditor.COGOReportCommand | none | COGOToolbar | Shows/hides the COGO report window. |
| Command | COGO Area | COGOAreaCommand | Advanced Edit Tools | {4DC0720C-A283-4455-81F7-BBDC3B3349B5} esriEditor.COGOAreaCommand | none | COGOToolbar | Reports the COGO area and other information for the selected COGO lines. |
| Command | Curve Calculator | CurveCalculatorCommand | Advanced Edit Tools | {349610FB-3C6B-426F-9DBE-8197F992013D} esriEditor.CurveCalculatorCommand | none | COGOToolbar | Reports missing parameters for curves. |
| Command | Split into COGO lines | SplitIntoCOGOLinesCommand | Advanced Edit Tools | {406C12C0-D9C8-4349-8D58-86C2107F6585} esriEditor.SplitIntoCOGOLinesCommand | none | COGOToolbar | Split selected line features into new two point line features. |
| Command | Update COGO Attributes | Editor_UpdateCOGOAttributesCommand | Advanced Edit Tools | {3B88738F-501C-4B7A-9228-F82365ACA623} esriEditor.UpdateCOGOAttributesCommand | none | COGOToolbar | Update the line COGO attributes from the geometry of the selected features. |
| Toolbar | Data Frame Tools | Tools_DataFrameToolbar | none | {4A8E6349-065E-11D4-9FE9-00C04F6BC78E} esriArcMapUI.DataFrameToolBar | none | none | none |
| Command | Rotate Data Frame | PanZoom_Rotate | Pan/Zoom | {0830FB36-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.RotateTool | none | Tools_DataFrameToolbar | Rotate the data frame interactively |
| Command | Clear Rotation | PanZoom_ClearMapRotation | Pan/Zoom | {20E5982F-2BC9-47ED-9A39-73375DE3DF31} esriArcMapUI.ClearMapRotationCommand | none | Tools_DataFrameToolbar | Set the data frame's rotation to zero |
| Command | Rotate Data Frame | PanZoom_MapRotation | Pan/Zoom | {B7913579-5A3B-4ECE-A12B-92530CE90C60} esriArcMapUI.MapRotationControl | none | Tools_DataFrameToolbar | Rotate the data frame by the specified angle |
| Command | Create Viewer Window | Browse_NewMapInset | Tools | {709608E3-5C7E-11D2-87BB-0000F8751720} esriArcMapUI.NewMapInsetTool | none | Tools_DataFrameToolbar | Create a new viewer window by dragging a rectangle. |
| Toolbar | Dimensioning | Dimensioning | none | {448BD3DC-71A9-44C4-B1B1-4F5D8576DC9A} esriEditor.DimensionToolBar | none | none | none |
| Command | Dimension Constructors | Dimension Constructors | Dimensioning | {3D6289C4-22AE-4CE0-A6B9-7E2CE0466D8B} esriEditor.DimensionConstructorControl | none | Dimensioning | Select the construction method used to create new dimensions. |
| Command | Dimension Styles | Dimension Styles | Dimensioning | {1D6804ED-E984-11D3-9F79-00C04F6BDDD9} esriEditor.DimensionStyleControl | none | Dimensioning | Selects the dimension style used for new dimension features. |
| Command | Dimensioning Tools | Dimensioning_Tools | Dimensioning | {3CCCBC14-1572-11D4-80D7-00C04F601565} esriEditor.DimensioningTools | none | Dimensioning | Automatically dimension the edge of a feature. |
| Toolbar | Distributed Geodatabase | Distributed Geodatabase | none | {74FEF2A6-0B53-4C37-A157-7930C08293E7} esriGeoDatabaseDistributedUI.ReplicationToolBar | none | none | none |
| Command | Create Replica | Create Replica | Distributed Geodatabase | {EA2F6CBD-7152-471E-8EC1-7F71D7BFEC9F} esriGeoDatabaseDistributedUI.CreateReplicaCommand | none | Distributed Geodatabase | Create a child replica from an ArcSDE database to another database so it can be edited |
| Command | Synchronize Changes | Synchronize Replica | Distributed Geodatabase | {7D93758F-90F7-423B-B02D-CBFA9FD31289} esriGeoDatabaseDistributedUI.SynchronizeReplicaCommand | none | Distributed Geodatabase | Synchronize data between a child and a parent replica |
| Command | Export Data Changes Message | L | Distributed Geodatabase | {56C26482-0FFC-4541-AE15-6DADC8AB9E47} esriGeoDatabaseDistributedUI.ExportChangesCommand | none | Distributed Geodatabase | Export Changes to checked out data in a database into a delta database |
| Command | Export Acknowledgment Message | http://www.w3.org/2001/XMLSchema | Distributed Geodatabase | {08D8A2D8-EB39-4832-9439-A409991F8FCA} esriGeoDatabaseDistributedUI.ExportAckCommand | none | Distributed Geodatabase | Export acknowledgment message from a multi generation to xml file. |
| Command | Import Message | L | Distributed Geodatabase | {903258F7-5E96-4D99-AB24-74F526F32B8A} esriGeoDatabaseDistributedUI.ImportChangesCommand | none | Distributed Geodatabase | Import Changes from a delta database or delta xml file to the current selected version or check-out. |
| Command | Re-Export Unacknowledged Messages | L | Distributed Geodatabase | {6798F85F-8912-45DF-B506-917825A3A404} esriGeoDatabaseDistributedUI.ReExportChangesCommand | none | Distributed Geodatabase | Re-Export unacknowledged messages from a multi generation replica to xml updategram file. |
| Command | Import Schema Changes | riEditor.EditorRotateTool.1 | Distributed Geodatabase | {6A0CE2E6-0EAC-45F4-85A2-D7A57F61A6CD} esriGeoDatabaseDistributedUI.ImportReplicaSchemaCommand | none | Distributed Geodatabase | Import Schema Changes |
| Command | Export Replica Schema | L | Distributed Geodatabase | {D7026198-3D07-4680-8FA1-CE94342E3D7F} esriGeoDatabaseDistributedUI.ExportReplicaSchemaCommand | none | Distributed Geodatabase | Export Replica Schema |
| Command | Compare Replica Schema | riEditor.EditorRotateTool.1 | Distributed Geodatabase | {D071B4EA-8711-42AB-A357-3BF1A0CE0E05} esriGeoDatabaseDistributedUI.ExportReplicaSchemaChangesCommand | none | Distributed Geodatabase | Export Schema Changes |
| Command | Manage Replicas | Replica Manager | Distributed Geodatabase | {25DF5FD9-8614-4962-8E64-CBFA7FCB3C4C} esriGeoDatabaseDistributedUI.ReplicaManagerCommand | none | Distributed Geodatabase | Manage the replicas in a Geodatabase |
| Command | Create Replica Layer | Create Replica Layer | Distributed Geodatabase | {ACE89576-F621-419E-A742-410A7CB027A3} esriGeoDatabaseDistributedUI.CreateReplicaLayerCommand | none | Distributed Geodatabase | Create Replica Layer |
| Command | Extract Data | Untitled | Distributed Geodatabase | {090733BE-BEF9-469B-9BB1-5F17AD2A7D5A} esriGeoDatabaseDistributedUI.DataExtractionCommand | none | Distributed Geodatabase | Extract data from one database into another database |
| Toolbar | Draw | PageLayout_DrawToolbar | none | {5DEB1DB4-C2A9-11D1-B9A2-080009EE4E51} esriArcMapUI.DrawToolBar | none | none | none |
| Menu | Drawing | PageLayout_DrawingMenu | none | {CF3A35DE-EB3C-11D1-8782-0000F8751720} esriArcMapUI.ArrangeMenu | none | PageLayout_DrawToolbar | none |
| Command | New Annotation Group | Map_NewGraphicsLayer | Data Frames | {BC58C7A0-C68E-11D2-9F32-00C04F6BC6A5} esriArcMapUI.NewGraphicsLayerCommand | none | PageLayout_DrawingMenu | Create a new annotation group in which to store text and graphics |
| Menu | Active Annotation Target | PageLayout_ActiveGraphicsLayersMenu | none | {BC58C79F-C68E-11D2-9F32-00C04F6BC6A5} esriArcMapUI.ActiveGraphicsLayerMenu | none | PageLayout_DrawingMenu | none |
| Command | { Annotation Targets } | { PageLayout_GraphicsLayersListMenu } | none | {BC58C79C-C68E-11D2-9F32-00C04F6BC6A5} esriArcMapUI.GraphicsLayersListMenu | none | PageLayout_ActiveGraphicsLayersMenu | none |
| Command | Group | PageLayout_Group | Page Layout | {4B96A443-FA41-11D0-83AF-080009B996CC} esriArcMapUI.GroupCommand | none | PageLayout_DrawingMenu | Group the selected elements |
| Command | Ungroup | LayoutTools_Ungroup | Page Layout | {4B96A444-FA41-11D0-83AF-080009B996CC} esriArcMapUI.UngroupCommand | none | PageLayout_DrawingMenu | Ungroup the selected element(s) |
| Menu | Graphic Operations | PageLayout_GeometryElementContextMenu | none | {CC0DCD29-DE5E-11D3-9FF8-00C04F6BC8DD} esriArcMapUI.GeometryElementContextMenu | none | PageLayout_DrawingMenu | none |
| Command | Union | PageLayout_GeometryElementUnion | Page Layout | {CC0DCD2B-DE5E-11D3-9FF8-00C04F6BC8DD} esriArcMapUI.GeometryElementUnionCommand | none | PageLayout_GeometryElementContextMenu | Unions the selected elements together |
| Command | Intersect | PageLayout_GeometryElementIntersect | Page Layout | {CC0DCD2E-DE5E-11D3-9FF8-00C04F6BC8DD} esriArcMapUI.GeometryElementIntersectCommand | none | PageLayout_GeometryElementContextMenu | Creates a single intersected polygon from the selected elements |
| Command | Remove Overlap | PageLayout_GeometryElementSymmetricDifference | Page Layout | {CC0DCD2D-DE5E-11D3-9FF8-00C04F6BC8DD} esriArcMapUI.GeometryElementSymmetricDifferenceCommand | none | PageLayout_GeometryElementContextMenu | Symmetric Difference between the selected elements |
| Command | Subtract | PageLayout_GeometryElementDifference | Page Layout | {036BA451-E983-11D3-A005-00C04F6BC8DD} esriArcMapUI.GeometryElementDifferenceCommand | none | PageLayout_GeometryElementContextMenu | Difference between the selected elements |
| Menu | Order | PageLayout_OrderMenu | none | {CF3A35E2-EB3C-11D1-8782-0000F8751720} esriArcMapUI.OrderMenu | none | PageLayout_DrawingMenu | none |
| Command | Bring to Front | PageLayout_BringToFront | Page Layout | {92D490B2-DF9D-11D1-8779-0000F8751720} esriArcMapUI.BringToFrontCommand | none | PageLayout_OrderMenu | Bring the selected element(s) to the front |
| Command | Send to Back | PageLayout_SendToBack | Page Layout | {92D490B3-DF9D-11D1-8779-0000F8751720} esriArcMapUI.SendToBackCommand | none | PageLayout_OrderMenu | Send the selected element(s) to the back |
| Command | Bring Forward | PageLayout_BringForward | Page Layout | {92D490B4-DF9D-11D1-8779-0000F8751720} esriArcMapUI.BringForwardCommand | none | PageLayout_OrderMenu | Bring the selected element(s) forward |
| Command | Send Backward | PageLayout_SendBackward | Page Layout | {92D490B5-DF9D-11D1-8779-0000F8751720} esriArcMapUI.SendBackwardCommand | none | PageLayout_OrderMenu | Send the selected element(s) backwards |
| Menu | Nudge | PageLayout_NudgeMenu | none | {CF3A35DF-EB3C-11D1-8782-0000F8751720} esriArcMapUI.NudgeMenu | none | PageLayout_DrawingMenu | none |
| Command | Nudge Left | PageLayout_NudgeLeft | Page Layout | {92D490AE-DF9D-11D1-8779-0000F8751720} esriArcMapUI.NudgeLeftCommand | none | PageLayout_NudgeMenu | Move the selected element(s) left |
| Command | Nudge Right | PageLayout_NudgeRight | Page Layout | {92D490AF-DF9D-11D1-8779-0000F8751720} esriArcMapUI.NudgeRightCommand | none | PageLayout_NudgeMenu | Move the selected element(s) right |
| Command | Nudge Up | PageLayout_NudgeUp | Page Layout | {92D490B0-DF9D-11D1-8779-0000F8751720} esriArcMapUI.NudgeUpCommand | none | PageLayout_NudgeMenu | Move the selected element(s) up |
| Command | Nudge Down | PageLayout_NudgeDown | Page Layout | {92D490B1-DF9D-11D1-8779-0000F8751720} esriArcMapUI.NudgeDownCommand | none | PageLayout_NudgeMenu | Move the selected element(s) down |
| Menu | Align | PageLayout_AlignMenu | none | {CF3A35E0-EB3C-11D1-8782-0000F8751720} esriArcMapUI.AlignMenu | none | PageLayout_DrawingMenu | none |
| Command | Align to Margins | PageLayout_AlignToMargins | Page Layout | {92D4909E-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignToMarginsCommand | none | PageLayout_AlignMenu | Toggle whether alignment is to page margins or elements in the selection |
| Command | Align Left | PageLayout_AlignLeft | Page Layout | {92D4909F-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignLeftCommand | none | PageLayout_AlignMenu | Align selected elements to the left |
| Command | Align Center | PageLayout_AlignCenter | Page Layout | {92D490A0-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignCenterCommand | none | PageLayout_AlignMenu | Align selected elements to the horizontal center |
| Command | Align Right | PageLayout_AlignRight | Page Layout | {92D490A1-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignRightCommand | none | PageLayout_AlignMenu | Align selected elements to the right |
| Command | Align Top | PageLayout_AlignTop | Page Layout | {92D490A2-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignTopCommand | none | PageLayout_AlignMenu | Align selected elements to the top |
| Command | Align Vertical Center | PageLayout_AlignMiddle | Page Layout | {92D490A3-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignMiddleCommand | none | PageLayout_AlignMenu | Align selected elements to the vertical center |
| Command | Align Bottom | PageLayout_AlignBottom | Page Layout | {92D490A4-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignBottomCommand | none | PageLayout_AlignMenu | Align selected elements to the bottom |
| Menu | Distribute | PageLayout_DistributeMenu | none | {CF3A35E5-EB3C-11D1-8782-0000F8751720} esriArcMapUI.DistributeMenu | none | PageLayout_DrawingMenu | none |
| Command | Distribute Horizontally | PageLayout_DistributeHorizontally | Page Layout | {92D490A5-DF9D-11D1-8779-0000F8751720} esriArcMapUI.DistributeHorizontallyCommand | none | PageLayout_DistributeMenu | Distribute selected elements evenly in the horizontal direction |
| Command | Distribute Vertically | PageLayout_DistributeVertically | Page Layout | {92D490A6-DF9D-11D1-8779-0000F8751720} esriArcMapUI.DistributeVerticallyCommand | none | PageLayout_DistributeMenu | Distribute selected elements evenly in the vertical direction |
| Command | Make Same Size | PageLayout_MakeSameSize | Page Layout | {92D490A7-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameSizeCommand | none | PageLayout_DistributeMenu | Make selected elements the same height and width |
| Command | Make Same Width | PageLayout_MakeSameWidth | Page Layout | {92D490A8-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameWidthCommand | none | PageLayout_DistributeMenu | Make selected elements the same width |
| Command | Make Same Height | PageLayout_MakeSameHeight | Page Layout | {92D490A9-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameHeightCommand | none | PageLayout_DistributeMenu | Make the selected elements the same height |
| Command | Fit to Margins | PageLayout_FitToMargin | Page Layout | {B7E9C434-4288-4AA1-A613-8861723B8130} esriArcMapUI.FitToMarginCommand | none | PageLayout_DistributeMenu | Make the selected element the same size as the printer margin |
| Command | Fit Width to Margins | PageLayout_FitToMarginWidth | Page Layout | {B7E9C435-4288-4AA1-A613-8861723B8130} esriArcMapUI.FitToMarginWidthCommand | none | PageLayout_DistributeMenu | Make the selected element the same width as the printer margin |
| Command | Fit Height to Margins | PageLayout_FitToMarginHeight | Page Layout | {B7E9C436-4288-4AA1-A613-8861723B8130} esriArcMapUI.FitToMarginHeightCommand | none | PageLayout_DistributeMenu | Make the selected element the same height as the printer margin |
| Menu | Rotate or Flip | PageLayout_RotateOrFlipMenu | none | {CF3A35E1-EB3C-11D1-8782-0000F8751720} esriArcMapUI.RotateOrFlipMenu | none | PageLayout_DrawingMenu | none |
| Command | Rotate Right | PageLayout_RotateLeft | Page Layout | {92D490AA-DF9D-11D1-8779-0000F8751720} esriArcMapUI.RotateLeftCommand | none | PageLayout_RotateOrFlipMenu | Rotate the selected text or graphic(s) 90 degrees clockwise |
| Command | Rotate Left | PageLayout_RotateRight | Page Layout | {92D490AB-DF9D-11D1-8779-0000F8751720} esriArcMapUI.RotateRightCommand | none | PageLayout_RotateOrFlipMenu | Rotate the selected text or graphic(s) 90 degrees counter-clockwise |
| Command | Flip Horizontally | PageLayout_FlipHorizontal | Page Layout | {92D490AC-DF9D-11D1-8779-0000F8751720} esriArcMapUI.FlipHorizontalCommand | none | PageLayout_RotateOrFlipMenu | Flip the selected text or element(s) horizontally |
| Command | Flip Vertically | PageLayout_FlipVertical | Page Layout | {92D490AD-DF9D-11D1-8779-0000F8751720} esriArcMapUI.FlipVerticalCommand | none | PageLayout_RotateOrFlipMenu | Flip the selected text or element(s) vertically |
| Command | Default Symbol Properties | Map_DefaultSymbolProperties | Data Frames | {14B5EEDA-D906-11D3-9FF5-00C04F6BC8DD} esriArcMapUI.DefaultSymbolPropertiesCommand | none | PageLayout_DrawingMenu | Set Default Symbol Properties |
| Command | Select Elements | PageLayout_SelectTool | Page Layout | {C22579D1-BC17-11D0-8667-0000F8751720} esriArcMapUI.SelectTool | none | PageLayout_DrawToolbar | Select, resize and move text, graphics and other objects placed on the map |
| Command | Rotate | PageLayout_RotateElement | Page Layout | {66770314-FBC0-11D1-A24E-080009B6F22B} esriArcMapUI.RotateElementTool | none | PageLayout_DrawToolbar | Rotates the selected text or graphic(s) |
| Command | Zoom to Selected Elements | PageLayout_ZoomToSelectedGraphics | Page Layout | {5D3E617C-13B6-4C7F-AB10-423DE02A2411} esriArcMapUI.ZoomToSelectedGraphicsCommand | none | PageLayout_DrawToolbar | Zoom to selected elements |
| Command | Drawing Tools | PageLayout_DrawingTools | Page Layout | {5AAD204F-D030-11D2-9F35-00C04F6BC61A} esriArcMapUI.MxDrawToolsPalette | none | PageLayout_DrawToolbar | Draw a rectangle |
| Command | Text tools | PageLayout_TextTools | Page Layout | {507DD1C3-E921-11D2-9F58-00C04F6BC6A5} esriArcMapUI.MxTextToolsPalette | none | PageLayout_DrawToolbar | Add text to the map by typing it in |
| Command | Edit Vertices | PageLayout_EditVertices | Page Layout | {D5109671-75B9-11D2-A2D3-080009B6F22B} esriArcMapUI.EditVerticesTool | none | PageLayout_DrawToolbar | Edit vertices of selected line, polygon, or curve |
| Command | Font | Text_Font | Text | {BDBDC3D1-D56D-11D1-A219-080009B6F22B} esriArcMapUI.FontNameControl | none | PageLayout_DrawToolbar | Change to a different font |
| Command | Font Size | Text_FontSize | Text | {BDBDC3D2-D56D-11D1-A219-080009B6F22B} esriArcMapUI.FontSizeControl | none | PageLayout_DrawToolbar | Change the font size |
| Command | Bold | Text_Bold | Text | {BDBDC3D3-D56D-11D1-A219-080009B6F22B} esriArcMapUI.FontBoldCommand | none | PageLayout_DrawToolbar | Toggle bold font |
| Command | Italic | Text_Italic | Text | {BDBDC3D4-D56D-11D1-A219-080009B6F22B} esriArcMapUI.FontItalicCommand | none | PageLayout_DrawToolbar | Toggle italic font |
| Command | Underline | Text_Underline | Text | {BDBDC3D5-D56D-11D1-A219-080009B6F22B} esriArcMapUI.FontUnderlineCommand | none | PageLayout_DrawToolbar | Toggle underline font |
| Command | Font Color | Font_Color | Text | {08C6EA8D-E7BC-11D2-9F57-00C04F6BC6A5} esriArcMapUI.FontColorToolControl | none | PageLayout_DrawToolbar | Change the font color |
| Command | Fill Color | Fill_Color | Text | {7A041B2A-E85E-11D2-9F57-00C04F6BC6A5} esriArcMapUI.FillColorToolControl | none | PageLayout_DrawToolbar | Change the fill color |
| Command | Line Color | Line_Color | Text | {7A041B2B-E85E-11D2-9F57-00C04F6BC6A5} esriArcMapUI.LineColorToolControl | none | PageLayout_DrawToolbar | Change the line color |
| Command | Marker Color | Marker_Color | Text | {7A041B2C-E85E-11D2-9F57-00C04F6BC6A5} esriArcMapUI.MarkerColorToolControl | none | PageLayout_DrawToolbar | Change the marker color |
| Toolbar | Editor | Editor_EditorToolbar | none | {C671B640-83B9-11D2-850C-0000F875B9C6} esriEditor.EditorToolBar | none | none | none |
| Menu | Editor | Editor_EditorMenu | none | {9EBF3A20-D0C0-11D0-802D-0000F8037368} esriEditor.EditorMenu | none | Editor_EditorToolbar | none |
| Command | Start Editing | Editor_StartEditing | Editor | {59D2AFD0-9EA2-11D1-9165-0080C718DF97} esriEditor.StartEditingCommand | none | Editor_EditorMenu | Starts an edit session |
| Command | Stop Editing | Editor_StopEditing | Editor | {59D2AFD1-9EA2-11D1-9165-0080C718DF97} esriEditor.StopEditingCommand | none | Editor_EditorMenu | Stops the edit session |
| Command | Save Edits | Editor_SaveEdits | Editor | {59D2AFD2-9EA2-11D1-9165-0080C718DF97} esriEditor.SaveEditsCommand | none | Editor_EditorMenu | Saves any pending edits |
| Command | Move | Editor_Move | Editor | {39ABBF40-C355-11D1-847B-0000F875B9C6} esriEditor.MoveCommand | none | Editor_EditorMenu | Moves the selected features a specified distance |
| Command | Split | Editor_SplitCommand | Editor | {8F85D79C-2A81-11D3-9F37-00C04F6BC979} esriEditor.SplitCommand | none | Editor_EditorMenu | Splits a linear feature |
| Command | Divide | Editor_Division | Editor | {5039D570-FB24-11D1-849C-0000F875B9C6} esriEditor.DivisionCommand | none | Editor_EditorMenu | Locates points or creates lines by subdividing a line by interval, distance, and percentage |
| Command | Buffer | Editor_Buffer | Editor | {DB56FE70-F74D-11D1-849A-0000F875B9C6} esriEditor.BufferCommand | none | Editor_EditorMenu | Buffers the selected features |
| Command | Copy Parallel | Editor_CopyParallel | Editor | {26032FF0-0F84-11D2-84A6-0000F875B9C6} esriEditor.CopyParallelCommand | none | Editor_EditorMenu | Creates new features at a specified offset from the selection |
| Command | Merge | Editor_Merge | Editor | {DB56FE71-F74D-11D1-849A-0000F875B9C6} esriEditor.MergeCommand | none | Editor_EditorMenu | Merges the selected features |
| Command | Union | Editor_Union | Editor | {DB56FE73-F74D-11D1-849A-0000F875B9C6} esriEditor.UnionCommand | none | Editor_EditorMenu | Unions the selected features |
| Command | Intersect | Editor_Intersection | Editor | {DB56FE72-F74D-11D1-849A-0000F875B9C6} esriEditor.IntersectCommand | none | Editor_EditorMenu | Intersects the selected features |
| Command | Clip | Editor_ClipCommand | Editor | {CD63FD48-CF69-4FC4-907D-761E3D6179A3} esriEditor.ClipCommand | none | Editor_EditorMenu | Clips the features that are coincident with the selected feature |
| Menu | More Editing Tools | MoreEditorTools | none | {EDAE47C2-4CA6-46B5-9D81-3450FC5A667A} esriEditor.EditorToolbarsPullright | none | Editor_EditorMenu | none |
| Command | Advanced Editing | Editor_AdvancedEditingToolbarCommand | Advanced Edit Tools | {6CAA9131-F696-4A0C-ACEF-F8ACF21EE76A} esriEditor.AdvancedEditingToolbarCommand | none | MoreEditorTools | Shows/hides the Advanced Editing toolbar. |
| Command | Annotation | Editor_AnnotationToolbarCommand | Advanced Edit Tools | {32CAEAA2-18BC-4C05-A16C-87DBABF62538} esriEditor.AnnotationToolbarCommand | none | MoreEditorTools | Shows/hides the Annotation toolbar. |
| Command | COGO | Editor_COGOToolbarCommand | Advanced Edit Tools | {1241A324-003C-4F49-AD26-C725518CDDED} esriEditor.COGOToolbarCommand | none | MoreEditorTools | Shows/hides the COGO toolbar. |
| Command | Dimensioning | Dimension_DimensiToolBarCommand | Dimensioning | {CC3BDB14-3CF6-409E-9FE8-3CD05944F67A} esriEditor.DimensionToolBarCommand | none | MoreEditorTools | Toggles the dimension toolbar. |
| Command | Geometric Network Editing | Editor_NetworkEditingToolbarCommand | Editor | {7A82233B-F529-46F9-9A02-61F83A5034FC} esriEditor.NetworkEditingToolbarCommand | none | MoreEditorTools | Shows/hides the Network Editing toolbar. |
| Command | Representation | Representation_RepresentationToolbar | Representation | {BBDA8EFC-8E8D-453D-8689-1AB0824E19F3} esriEditor.RepresentationToolbarCommand | none | MoreEditorTools | Show/hides the Representation toolbar |
| Command | Route Editing | RouteEditingToolbarCommand | Route Editing Commands | {73A1B990-F579-452B-B199-73796B02A499} esriLocationUI.RouteEditingToolbarCommand | none | MoreEditorTools | Shows/hides the Route Editing toolbar. |
| Command | Spatial Adjustment | Adjustment_AdjustmentToolBarCommand | Adjustment | {AC96A3DB-4E74-4709-BE28-8AB9A91D3B52} esriEditorExt.AdjustmentToolBarCommand | none | MoreEditorTools | Toggles the adjustment toolbar. |
| Command | Topology | Topology_TitusToolbarCommand | Topology | {08E59412-DC96-4BE5-9699-B13E8CAE5A5A} esriEditorExt.TitusToolbarCommand | none | MoreEditorTools | Shows/hides the Topology toolbar. |
| Command | Versioning | Version_VersinoToolBarCommand | Versioning | {E9D1E8DE-8ECD-4549-91D3-F7CEB0D46904} esriEditor.VersionToolBarCommand | none | MoreEditorTools | Toggles the versioning toolbar. |
| Command | Validate Features | Editor_ValidateSelection | Editor | {ABDEE4E8-B0C8-11D2-AAE2-00C04FA37B82} esriEditor.ValidateSelectionCommand | none | Editor_EditorMenu | Validates subtype, attribute, network connectivity, relationship and custom rules for the selected features |
| Command | Snapping | Editor_Snapping | Editor | {81435AE0-3C49-11D2-84CA-0000F875B9C6} esriEditor.SnappingCommand | none | Editor_EditorMenu | Shows the snapping environment dialog |
| Command | Options | Editor_Properties | Editor | {59AF5677-2A61-11D1-9661-0000F8037368} esriEditor.PropertiesCommand | none | Editor_EditorMenu | Displays the editing options dialog. |
| Command | Edit Tool | Editor_EditTool | Editor | {9EBF3A1E-D0C0-11D0-802D-0000F8037368} esriEditor.EditTool | none | Editor_EditorToolbar | Edits features and their geometries |
| Command | Sketch Tools | Editor_SketchTools | Editor | {952C7CAC-29BC-11D3-9F37-00C04F6BC979} esriEditor.SketchToolsPalette | none | Editor_EditorToolbar | Adds points to the edit sketch |
| Command | Edit Task | Editor_SubTypeControl | Editor | {E883D38B-5E44-11D2-A2BF-0000F8774FB5} esriEditor.TaskControl | none | Editor_EditorToolbar | Selects the edit task |
| Command | Target Layer | Editor_SubTypeControl | Editor | {9EBF3A21-D0C0-11D0-802D-0000F8037368} esriEditor.SubTypeControl | none | Editor_EditorToolbar | Layer in which features you create will be stored |
| Command | Split Tool | Editor_SplitTool | Editor | {5609B740-112F-11D2-84A9-0000F875B9C6} esriEditor.SplitTool | none | Editor_EditorToolbar | Splits a linear feature |
| Command | Rotate Tool | Editor_Rotate | Editor | {ACBB2618-DE0C-11D1-AA7E-00C04FA374BD} esriEditor.EditorRotateTool | none | Editor_EditorToolbar | Rotates the selected features |
| Command | Attributes | Editor_Attribution | Editor | {44276914-98C1-11D1-8464-0000F875B9C6} esriEditor.AttributionCommand | none | Editor_EditorToolbar | Shows the feature property editor |
| Command | Properties | Editor_SketchProperties | Editor | {50F9A8E5-A820-4D00-8369-E35832141356} esriEditor.SketchPropertiesCommand | none | Editor_EditorToolbar | Shows a dialog for editing properties of the edit sketch geometry. |
| Toolbar | Effects | Effects_Toolbar | none | {377ABA1D-2019-11D3-9F97-00C04F6BC78E} esriArcMapUI.LayerEffectsToolBar | none | none | none |
| Command | Choose Effects Layer | Layer_LayerEffectsListControl | Layer | {377ABA21-2019-11D3-9F97-00C04F6BC78E} esriArcMapUI.LayerEffectsListControl | none | Effects_Toolbar | Choose the layer drawing effects will operate on |
| Command | Contrast | Layer_LayerEffectsContrastCommand | Layer | {377ABA1E-2019-11D3-9F97-00C04F6BC78E} esriArcMapUI.LayerEffectsContrastCommand | none | Effects_Toolbar | Adjusts the contrast of a layer |
| Command | Brightness | Layer_LayerEffectsBrightnessCommand | Layer | {377ABA1F-2019-11D3-9F97-00C04F6BC78E} esriArcMapUI.LayerEffectsBrightnessCommand | none | Effects_Toolbar | Adjusts the brightness of a layer |
| Command | Transparency | Layer_LayerEffectsTransparencyCommand | Layer | {377ABA20-2019-11D3-9F97-00C04F6BC78E} esriArcMapUI.LayerEffectsTransparencyCommand | none | Effects_Toolbar | Adjusts the transparency of a layer |
| Command | Swipe | ControlToolsMapInquiry_Swipe | Map Inquiry | {867C6BDC-DB38-485C-B56C-BD912D0CAD74} esriControls.ControlsMapSwipeTool | none | Effects_Toolbar | Drag to see underneath chosen layer. CTRL + click for full screen. |
| Command | Flicker | ControlToolsInquiry_AutoFlicker | Map Inquiry | {0275091D-3820-4B18-A646-BCFE890735CE} esriControls.ControlsAutoFlickerCommand | none | Effects_Toolbar | Reveals layers below the selected layer by flickering for the specified time duration. |
| Command | Flicker Rate | ControlToolsGeneric_FlickerRate | Generic | {9532F137-EECA-4158-8690-1DD93B286B73} esriControls.ControlsFlickerRateToolControl | none | Effects_Toolbar | Controls the rate of flicker |
| Toolbar | GPS | GPS_ToolBar | none | {E60435D6-F5B9-4FE2-9251-6A57E3216A14} esriArcMapUI.GpsToolBar | none | none | none |
| Menu | GPS | Gps Menu | none | {6FD14416-09B7-4C07-B33C-0624D06E94CE} esriArcMapUI.GpsToolsMenu | none | GPS_ToolBar | none |
| Command | GPS Connection Setup | GPS_ConnectionProperties | GPS | {D90F8290-7CA1-4924-BE99-F09E40AB3D82} esriArcMapUI.GpsConnectionPropertiesCommand | none | Gps Menu | Displays the current GPS connection setting and enables to make changes |
| Command | GPS Position Window | GPS_PositionInfoWindow | GPS | {8FB3E767-A87B-4E92-8632-7120107EA592} esriArcMapUI.GpsPositionInfoWindowCommand | none | Gps Menu | Displays GPS position information dialog |
| Command | Clear GPS Display | GPS_ClearDisplay | GPS | {C4B9B8B0-36B7-45C8-994A-5A5DE6C89B58} esriArcMapUI.GpsClearDisplayCommand | none | Gps Menu | Clears all GPS display items |
| Command | Auto Pan | GPS_AutoPanCommand | GPS | {57C47D0C-D279-4E2D-B091-DCC2C25441FC} esriArcMapUI.GpsAutoPanCommand | none | Gps Menu | Toggles auto pan on/off |
| Command | Destination Properties | GPS_DestinationProperties | GPS | {216D0780-D806-4EC9-9B58-78CC5A7A66D0} esriArcMapUI.GpsDestinationPropertiesCommand | none | Gps Menu | Displays/ lets you edit destination properties |
| Command | Clear Destination | GPS_ClearDestination | GPS | {F63D2C12-8CB8-439D-864D-FCE175E55798} esriArcMapUI.GpsClearDestinationCommand | none | Gps Menu | Clears the current destination |
| Command | Log Setup | GPS_LogfileProperties | GPS | {B051A711-87E7-4E65-B9EA-FB9B196AA6FE} esriArcMapUI.GpsLogfilePropertiesCommand | none | Gps Menu | Display or set properties of the log |
| Command | Display Options | GPS_DisplayProperties | GPS | {089E3A8B-FD36-436C-A656-1275C09B00B9} esriArcMapUI.GpsDisplayPropertiesCommand | none | Gps Menu | Displays properties of GPS display |
| Command | Open GPS Connection | GPS_OpenConnection | GPS | {6351A009-C357-4B2C-BA28-ACCDDE553E21} esriArcMapUI.GpsOpenConnectionCommand | none | GPS_ToolBar | Opens GPS connection for updates from GPS |
| Command | Close GPS Connection | GPS_CloseConnection | GPS | {1066D86C-415D-4A8C-BF15-5F2668307D5C} esriArcMapUI.GpsCloseConnectionCommand | none | GPS_ToolBar | Close GPS connection to stop updates from GPS |
| Command | Start streaming | GPS_StartStreaming | GPS | {A6F80E9A-4367-42D3-940B-8F922FB0CF70} esriArcMapUI.GpsStartStreamingCommand | none | GPS_ToolBar | Starts streaming GPS data into the selected log |
| Command | Stop streaming | GPS_StopStreaming | GPS | {F7F98DAC-017A-4884-8C7F-FCC99DE6D3A3} esriArcMapUI.GpsStopStreamingCommand | none | GPS_ToolBar | Stops streaming GPS data into selected log |
| Command | Stamp Current Position | GPS_StampCurrentPosition | GPS | {256176AD-0C33-406C-9ED8-9F7AC784A3E3} esriArcMapUI.GpsStampCurrentPositionCommand | none | GPS_ToolBar | Stamps the current position to the log |
| Command | Pan to position | GPS_PanToPosition | GPS | {19E19A27-0E8E-4A07-BA6A-C7357B881A47} esriArcMapUI.GpsPanToPositionCommand | none | GPS_ToolBar | Pans the active view to display the current GPS position |
| Command | Zoom to position | GPS_ZoomToPosition | GPS | {A71B9DAF-5E4D-41B4-BE12-EF3FE375BBFF} esriArcMapUI.GpsZoomToPositionCommand | none | GPS_ToolBar | Zooms to the current GPS position |
| Command | Add destination | GPS_AddDestination | GPS | {A05264AB-888A-452E-89F7-4F274757ECE6} esriArcMapUI.GpsAddDestinationTool | none | GPS_ToolBar | Sets the clicked point on the screen as the destination |
| Toolbar | Geodatabase History | HistoryToolbar | none | {C7F3D11D-4724-4226-BF94-71DA47EB11AA} esriArcMapUI.HistoryToolBar | none | none | none |
| Command | Geodatabase History Viewer | HistoryViewer | Geodatabase History | {383727C4-D8AD-4E69-9305-C93883B21135} esriArcMapUI.HistoryViewerCommand | none | HistoryToolbar | View different moments in time of a historical version. |
| Command | Add Historical Archive | HistoryAddArchiveCommand | Geodatabase History | {045F884E-FFAF-4016-BFE2-D64DBEC71F9F} esriArcMapUI.HistoryAddArchiveCommand | none | HistoryToolbar | Selected tables/layers with an archive will have their archive added to the map as a new layer/table. |
| Command | Historical Marker Manager | HistoryMarkerManagerCommand | Geodatabase History | {31D02F0E-E38E-4B95-9B34-0E50EC073D7A} esriArcMapUI.HistoryMarkerManagerCommand | none | HistoryToolbar | Show/hide the Historical Marker Manager. |
| Toolbar | Geometric Network Editing | Editor_NetworkEditingToolbar | none | {20E728C2-4B32-444A-9AA6-747DE08BFF23} esriEditor.NetworkEditingToolbar | none | none | none |
| Command | Connect | Editor_Connect | Editor | {111ACB08-D71E-11D2-9F3E-00C04F6BDD84} esriEditor.ConnectCommand | none | Editor_NetworkEditingToolbar | Connects the selected JunctionFeatures |
| Command | Disconnect | Editor_Disconnect | Editor | {448E1796-168B-11D2-AEF7-0000F80372B4} esriEditor.DisconnectCommand | none | Editor_NetworkEditingToolbar | Disconnects the selected network feature |
| Command | Rebuild Connectivity | Editor_ConnectivityRebuild | Editor | {A2C9163D-697F-11D4-A0B1-00C04F6BDD84} esriEditor.ConnectivityRebuildTool | none | Editor_NetworkEditingToolbar | Incrementally rebuilds network connectivity for the selected area. |
| Command | Repair Connectivity | Editor_RepairConnectivity | Editor | {A5A65A20-5061-47E9-B988-843AB5F8FF24} esriEditor.RepairConnectivityCommand | none | Editor_NetworkEditingToolbar | Repair Connectivity |
| Command | Verify Connectivity Command | Editor_ConnectivityVerification | Editor | {5E6D6C79-98A4-11D4-A0D8-00C04F6BDD84} esriEditor.ConnectivityVerificationCommand | none | Editor_NetworkEditingToolbar | Verify connectivity of selected features or all features |
| Command | Verify Network Feature Geometry Tool | Editor_GeometryVerification | Editor | {5E6D6C7A-98A4-11D4-A0D8-00C04F6BDD84} esriEditor.GeometryVerificationTool | none | Editor_NetworkEditingToolbar | Verify network geometry of features inside area you define |
| Command | Verify Network Feature Geometry Command | Editor_GeometryVerification | Editor | {5E6D6C7B-98A4-11D4-A0D8-00C04F6BDD84} esriEditor.GeometryVerificationCommand | none | Editor_NetworkEditingToolbar | Verify network geometry of selected features or all features |
| Command | Network Build Errors | Editor_NetworkBuildErrors | Editor | {5E6D6C7C-98A4-11D4-A0D8-00C04F6BDD84} esriEditor.NetworkBuildErrorsCommand | none | Editor_NetworkEditingToolbar | Selects features that cause errors in the network build |
| Toolbar | Georeferencing | Georeferencing_ToolBar | none | {46B1C24B-DEE2-11D3-A642-0008C7D3AF72} esriGeoReferenceUI.RectifyToolBar | none | none | none |
| Menu | Georeferencing | Georeferencing_Menu | none | {669C68D0-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifyMenu | none | Georeferencing_ToolBar | none |
| Command | Update Georeferencing | Georeferencing_SaveItem | Georeferencing | {669C68D3-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifySaveItem | none | Georeferencing_Menu | Save current warp to dataset |
| Command | Rectify | Georeferencing_SaveAsItem | Georeferencing | {669C68D4-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifySaveAsItem | none | Georeferencing_Menu | Save current warp to new dataset |
| Command | Fit To Display | Georeferencing_FitToDisplayItem | Georeferencing | {726AD821-1F94-11D4-B9F4-00C0F0567A4A} esriGeoReferenceUI.FitToDisplayItem | none | Georeferencing_Menu | Fit source layer to current display extent |
| Menu | Flip or Rotate | Flip or &Rotate | none | {81751E84-1F79-11D4-B9F4-00C0F0567A4A} esriGeoReferenceUI.FlipRotateMenu | none | Georeferencing_Menu | none |
| Command | Rotate Right | Georeferencing_RotateRightItem | Georeferencing | {79AE8435-D4DE-11D3-B9B5-00C0F0567A4A} esriGeoReferenceUI.RectifyRotateRightItem | none | Flip or &Rotate | Rotate source layer 90 degrees clockwise |
| Command | Rotate Left | Georeferencing_RotateLeftItem | Georeferencing | {79AE8433-D4DE-11D3-B9B5-00C0F0567A4A} esriGeoReferenceUI.RectifyRotateLeftItem | none | Flip or &Rotate | Rotate source layer 90 degrees counterclockwise |
| Command | Flip Horizontal | Georeferencing_FlipHorizontalItem | Georeferencing | {79AE8431-D4DE-11D3-B9B5-00C0F0567A4A} esriGeoReferenceUI.RectifyFlipHorizontalItem | none | Flip or &Rotate | Flip source layer horizontally |
| Command | Flip Vertical | Georeferencing_FlipVerticalItem | Georeferencing | {79AE8432-D4DE-11D3-B9B5-00C0F0567A4A} esriGeoReferenceUI.RectifyFlipVerticalItem | none | Flip or &Rotate | Flip source layer vertically |
| Menu | Transformation | &Transformation | none | {31E21EB1-D47A-11D3-B9B4-00C0F0567A4A} esriGeoReferenceUI.TransformOrderMenu | none | Georeferencing_Menu | none |
| Command | 1st Order Polynomial (Affine) | Georeferencing_TransformFirstOrderItem | Georeferencing | {31E21EB2-D47A-11D3-B9B4-00C0F0567A4A} esriGeoReferenceUI.TransformFirstOrderItem | none | &Transformation | First order polynomial transformation |
| Command | 2nd Order Polynomial | Georeferencing_TransformSecondOrderItem | Georeferencing | {31E21EB4-D47A-11D3-B9B4-00C0F0567A4A} esriGeoReferenceUI.TransformSecondOrderItem | none | &Transformation | Second order polynomial transformation |
| Command | 3rd Order Polynomial | Georeferencing_TransformThirdOrderItem | Georeferencing | {31E21EB5-D47A-11D3-B9B4-00C0F0567A4A} esriGeoReferenceUI.TransformThirdOrderItem | none | &Transformation | Third order polynomial transformation |
| Command | Adjust | Georeferencing_TransformRubberSheetingItem | Georeferencing | {13E0A77B-DFD3-4DD2-94C6-68536E7CBA67} esriGeoReferenceUI.TransformRubberSheetingItem | none | &Transformation | Adjust transformation |
| Command | Spline | Georeferencing_TransformSplineItem | Georeferencing | {C46F6B4E-254F-4A5E-B273-FEE062855547} esriGeoReferenceUI.TransformSplineItem | none | &Transformation | Spline transformation |
| Command | Auto Adjust | Georeferencing_AutoAdjustItem | Georeferencing | {669C68D7-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifyAutoAdjustItem | none | Georeferencing_Menu | Toggle automatic adjustment on/off |
| Command | Update Display | Georeferencing_UpdateItem | Georeferencing | {998C9091-D4E7-11D3-B9B5-00C0F0567A4A} esriGeoReferenceUI.RectifyUpdateItem | none | Georeferencing_Menu | Update the display based on current control points |
| Command | Delete Control Points | Georeferencing_ResetItem | Georeferencing | {669C68D8-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifyResetItem | none | Georeferencing_Menu | Eliminate existing control points without changing transformation |
| Command | Reset Transformation | Georeferencing_ResetTransformItem | Georeferencing | {A8D4FC4C-1A17-11D4-A66D-0008C7DF88A8} esriGeoReferenceUI.RectifyResetTransformItem | none | Georeferencing_Menu | Reset layer to original position |
| Command | Layers | Georeferencing_LayersListControl | Georeferencing | {46B1C24C-DEE2-11D3-A642-0008C7D3AF72} esriGeoReferenceUI.RectifyLayersListControl | none | Georeferencing_ToolBar | Select source layer |
| Command | Palette | Georeferencing_TransformTools | Georeferencing | {C8428DF1-D2A2-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifyTransformToolsPalette | none | Georeferencing_ToolBar | Rotate source layer |
| Command | Add Control Points | Georeferencing_AddControlPointsTool | Georeferencing | {C50D33D2-DBED-11D3-B9BD-00C0F0567A4A} esriGeoReferenceUI.ControlPointTool | none | Georeferencing_ToolBar | Select control points from layer to map |
| Command | View Link Table | Georeferencing_LinkTableItem | Georeferencing | {669C68D5-D11E-11D3-B9B1-00C0F0567A4A} esriGeoReferenceUI.RectifyLinkTableItem | none | Georeferencing_ToolBar | Show links and errors in tabular form |
| Toolbar | Geostatistical Analyst | GeostatisticalAnalyst_Toolbar | none | {3D1AF406-63BC-11D2-AAB9-00C04FA375FB} esriGeoStatisticalAnalystUI.GSEngineToolBar | none | none | none |
| Menu | Geostatistical Analyst | GeostatisticalAnalyst_Menu | none | {42DB70B8-652A-11D2-AABA-00C04FA375FB} esriGeoStatisticalAnalystUI.GSEngineMenu | none | GeostatisticalAnalyst_Toolbar | none |
| Menu | Explore Data | GeostatisticalAnalyst_ESDAMenu | none | {BB1FF4B0-54E8-11D3-8D39-00C04F5B87B2} esriGeoStatisticalAnalystUI.ESDAMethodsSubMenu | none | GeostatisticalAnalyst_Menu | none |
| Command | { ESDA Single-Dataset Items } | { GeostatisticalAnalyst_ESDASingleDatasetMultiItem } | none | {2C6C5EA0-54E9-11D3-8D39-00C04F5B87B2} esriGeoStatisticalAnalystUI.ESDAMethodsSingleDatasetMultiItem | none | GeostatisticalAnalyst_ESDAMenu | none |
| Command | { ESDA Multi-Dataset Items } | { GeostatisticalAnalyst_ESDASingleDatasetMultiItem } | none | {ED4B8DD0-2AD3-11D4-8D90-00C04F5B87B2} esriGeoStatisticalAnalystUI.ESDAMethodsMultiDatasetMultiItem | none | GeostatisticalAnalyst_ESDAMenu | none |
| Command | Geostatistical Wizard | Geostatistical &Wizard... | none | {5E060AAE-9619-11D2-AAD7-00C04FA375FB} esriGeoStatisticalAnalystUI.GSEngineCreateExCommand | 0 | GeostatisticalAnalyst_Menu | Launch Geostatistical Analyst Wizard |
| Command | Create Subsets | Create &Subsets... | none | {D85CE2C0-652F-11D2-AABA-00C04FA375FB} esriGeoStatisticalAnalystUI.GSEngineCreateSubSets | 0 | GeostatisticalAnalyst_Menu | Creates a validation model by subsetting the data |
| Toolbar | Graphics | PageLayout_GraphicsToolbar | none | {9D197EC8-F9FF-488F-BCBB-19F8E37D790F} esriArcMapUI.GraphicsToolBar | none | none | none |
| Command | Group | PageLayout_Group | Page Layout | {4B96A443-FA41-11D0-83AF-080009B996CC} esriArcMapUI.GroupCommand | none | PageLayout_GraphicsToolbar | Group the selected elements |
| Command | Ungroup | LayoutTools_Ungroup | Page Layout | {4B96A444-FA41-11D0-83AF-080009B996CC} esriArcMapUI.UngroupCommand | none | PageLayout_GraphicsToolbar | Ungroup the selected element(s) |
| Command | Bring to Front | PageLayout_BringToFront | Page Layout | {92D490B2-DF9D-11D1-8779-0000F8751720} esriArcMapUI.BringToFrontCommand | none | PageLayout_GraphicsToolbar | Bring the selected element(s) to the front |
| Command | Send to Back | PageLayout_SendToBack | Page Layout | {92D490B3-DF9D-11D1-8779-0000F8751720} esriArcMapUI.SendToBackCommand | none | PageLayout_GraphicsToolbar | Send the selected element(s) to the back |
| Command | Bring Forward | PageLayout_BringForward | Page Layout | {92D490B4-DF9D-11D1-8779-0000F8751720} esriArcMapUI.BringForwardCommand | none | PageLayout_GraphicsToolbar | Bring the selected element(s) forward |
| Command | Send Backward | PageLayout_SendBackward | Page Layout | {92D490B5-DF9D-11D1-8779-0000F8751720} esriArcMapUI.SendBackwardCommand | none | PageLayout_GraphicsToolbar | Send the selected element(s) backwards |
| Command | Align to Margins | PageLayout_AlignToMargins | Page Layout | {92D4909E-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignToMarginsCommand | none | PageLayout_GraphicsToolbar | Toggle whether alignment is to page margins or elements in the selection |
| Command | Align Left | PageLayout_AlignLeft | Page Layout | {92D4909F-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignLeftCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the left |
| Command | Align Center | PageLayout_AlignCenter | Page Layout | {92D490A0-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignCenterCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the horizontal center |
| Command | Align Right | PageLayout_AlignRight | Page Layout | {92D490A1-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignRightCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the right |
| Command | Align Top | PageLayout_AlignTop | Page Layout | {92D490A2-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignTopCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the top |
| Command | Align Vertical Center | PageLayout_AlignMiddle | Page Layout | {92D490A3-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignMiddleCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the vertical center |
| Command | Align Bottom | PageLayout_AlignBottom | Page Layout | {92D490A4-DF9D-11D1-8779-0000F8751720} esriArcMapUI.AlignBottomCommand | none | PageLayout_GraphicsToolbar | Align selected elements to the bottom |
| Command | Distribute Horizontally | PageLayout_DistributeHorizontally | Page Layout | {92D490A5-DF9D-11D1-8779-0000F8751720} esriArcMapUI.DistributeHorizontallyCommand | none | PageLayout_GraphicsToolbar | Distribute selected elements evenly in the horizontal direction |
| Command | Distribute Vertically | PageLayout_DistributeVertically | Page Layout | {92D490A6-DF9D-11D1-8779-0000F8751720} esriArcMapUI.DistributeVerticallyCommand | none | PageLayout_GraphicsToolbar | Distribute selected elements evenly in the vertical direction |
| Command | Make Same Size | PageLayout_MakeSameSize | Page Layout | {92D490A7-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameSizeCommand | none | PageLayout_GraphicsToolbar | Make selected elements the same height and width |
| Command | Make Same Width | PageLayout_MakeSameWidth | Page Layout | {92D490A8-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameWidthCommand | none | PageLayout_GraphicsToolbar | Make selected elements the same width |
| Command | Make Same Height | PageLayout_MakeSameHeight | Page Layout | {92D490A9-DF9D-11D1-8779-0000F8751720} esriArcMapUI.MakeSameHeightCommand | none | PageLayout_GraphicsToolbar | Make the selected elements the same height |
| Command | Rotate Right | PageLayout_RotateLeft | Page Layout | {92D490AA-DF9D-11D1-8779-0000F8751720} esriArcMapUI.RotateLeftCommand | none | PageLayout_GraphicsToolbar | Rotate the selected text or graphic(s) 90 degrees clockwise |
| Command | Rotate Left | PageLayout_RotateRight | Page Layout | {92D490AB-DF9D-11D1-8779-0000F8751720} esriArcMapUI.RotateRightCommand | none | PageLayout_GraphicsToolbar | Rotate the selected text or graphic(s) 90 degrees counter-clockwise |
| Command | Flip Horizontally | PageLayout_FlipHorizontal | Page Layout | {92D490AC-DF9D-11D1-8779-0000F8751720} esriArcMapUI.FlipHorizontalCommand | none | PageLayout_GraphicsToolbar | Flip the selected text or element(s) horizontally |
| Command | Flip Vertically | PageLayout_FlipVertical | Page Layout | {92D490AD-DF9D-11D1-8779-0000F8751720} esriArcMapUI.FlipVerticalCommand | none | PageLayout_GraphicsToolbar | Flip the selected text or element(s) vertically |
| Toolbar | Labeling | Maplex_MaplexToolBar | none | {F7563B84-0B47-469C-B25A-5046CD44E4A5} esriMaplexUI.MaplexToolBar | none | none | none |
| Menu | Labeling | Maplex_Menu | none | {955F14C2-005E-4F7B-8C1F-7761781E8B11} esriMaplexUI.MaplexToolMenu | none | Maplex_MaplexToolBar | none |
| Command | Abbreviation Dictionaries | Maplex_LabelDictionary | Maplex | {883C1E59-39E1-4BAA-85C7-29BC3970E61C} esriMaplexUI.MaplexDictionaryCommand | none | Maplex_Menu | Open the Abbreviations Dictionary dialog |
| Command | Use Maplex Label Engine | Maplex Label Engine | Maplex | {5C034EED-7881-4E07-8E1E-2051A1EE46ED} esriMaplexUI.MaplexLabelEngineCommand | none | Maplex_Menu | Switch between the Maplex label engine and the standard label engine. |
| Command | Options | File_LabelingOptions | Label | {32D0E684-CBFC-4F6D-AD1A-BA979E6379E8} esriArcMapUI.LabelingOptionsCommand | none | Maplex_Menu | Displays the labeling options dialog. |
| Command | Label Manager | File_LabelManager | Label | {D8AC02F6-00ED-4427-98D4-E8ADADBA0E6B} esriArcMapUI.LabelManagerCommand | none | Maplex_MaplexToolBar | Open the Label Manager dialog. |
| Command | Label Priority Ranking | File_LabelPriorityRanking | Label | {ABB95DF3-EDBF-407B-96FC-017111D6AAFA} esriArcMapUI.LabelPriorityRankingCommand | none | Maplex_MaplexToolBar | Open the Label Priority Ranking dialog. |
| Command | Label Weight Ranking | File_LabelWeightRanking | Label | {7304FF97-7200-4960-8CD5-D353AAC55F58} esriArcMapUI.LabelWeightRankingCommand | none | Maplex_MaplexToolBar | Open the Label Weight Ranking dialog. |
| Command | Lock Labels | File_LabelCache | Label | {D5E987CA-6C3D-4E7C-BEE4-E9C7123C93FC} esriArcMapUI.LabelCacheCommand | none | Maplex_MaplexToolBar | Lock labels in their current positions. |
| Command | View Unplaced Labels | File_LabelViewUnplaced | Label | {7999B2BA-5EF7-4892-861C-93EDE859E69F} esriArcMapUI.LabelViewUnplacedCommand | none | Maplex_MaplexToolBar | Displays the labels that could not be placed on the map. |
| Command | Placement Quality | MLE_Quality | Maplex | {20664808-8DE2-A1FA-8DAE-1EF40AB6D22A} esriMaplexUI.MaplexQualityControl | none | Maplex_MaplexToolBar | Sets the placement quality for labeling. |
| Toolbar | Layout | PageLayout_LayoutToolbar | none | {5DEB1DB3-C2A9-11D1-B9A2-080009EE4E51} esriArcMapUI.LayoutToolBar | none | none | none |
| Command | Zoom In | PageLayout_PageZoomIn | Page Layout | {E920D9E7-9CB1-11D1-873C-0000F8751720} esriArcMapUI.PageZoomInTool | none | PageLayout_LayoutToolbar | Zoom in on the map layout by clicking a point or dragging a box |
| Command | Zoom Out | PageLayout_PageZoomOut | Page Layout | {E920D9E8-9CB1-11D1-873C-0000F8751720} esriArcMapUI.PageZoomOutTool | none | PageLayout_LayoutToolbar | Zoom out on the map layout by clicking a point or dragging a box |
| Command | Pan | PageLayout_PagePan | Page Layout | {E920D9E9-9CB1-11D1-873C-0000F8751720} esriArcMapUI.PagePanTool | none | PageLayout_LayoutToolbar | Pan the map layout by dragging it |
| Command | Fixed Zoom In | PageLayout_PageZoomInFixed | Page Layout | {E920D9EA-9CB1-11D1-873C-0000F8751720} esriArcMapUI.PageZoomInFixedCommand | none | PageLayout_LayoutToolbar | Zoom in on the center of the map layout |
| Command | Fixed Zoom Out | PageLayout_PageZoomOutFixed | Page Layout | {E920D9EB-9CB1-11D1-873C-0000F8751720} esriArcMapUI.PageZoomOutFixedCommand | none | PageLayout_LayoutToolbar | Zoom out on the center of the map layout |
| Command | Zoom Whole Page | LayoutTools_ZoomWholePage | Page Layout | {C22579D3-BC17-11D0-8667-0000F8751720} esriArcMapUI.ZoomWholePageCommand | none | PageLayout_LayoutToolbar | Zoom to the whole map layout so you can see it all |
| Command | Zoom to 100% | LayoutTools_Zoom100Percent | Page Layout | {C22579D4-BC17-11D0-8667-0000F8751720} esriArcMapUI.Zoom100PercentCommand | none | PageLayout_LayoutToolbar | Zoom the map layout to 100% (1:1) |
| Command | Go Back To Extent | LayoutTools_ZoomPageToLastExtentBack | Page Layout | {0C56F301-410B-11D2-A2AA-080009B6F22B} esriArcMapUI.ZoomPageToLastExtentBackCommand | none | PageLayout_LayoutToolbar | Go back to previous extent of the map layout |
| Command | Go Forward To Extent | LayoutTools_ZoomPageToLastExtentForward | Page Layout | {0C56F302-410B-11D2-A2AA-080009B6F22B} esriArcMapUI.ZoomPageToLastExtentForwardCommand | none | PageLayout_LayoutToolbar | Go forward to the next extent of the map layout |
| Command | Zoom Control | PageLayout_Zoom | Page Layout | {A235CDB1-C7E2-11D0-8380-080009B996CC} esriArcMapUI.ZoomControl | none | PageLayout_LayoutToolbar | Zoom the map layout by a particular percentage |
| Command | Toggle Draft Mode | PageLayout_TogleDraftModeOfFrames | Page Layout | {5821236E-6C14-46E2-9B2C-56CC35E0A5E5} esriArcMapUI.ToggleDraftModeOnFramesCommand | none | PageLayout_LayoutToolbar | Toggle draft mode of frame graphics. |
| Command | Focus Data Frame | PageLayout_FocusDataFrameDrawing | Page Layout | {F752FFCA-F2A6-45B6-9C84-5BD4B4DFA770} esriArcMapUI.FocusDataFrameDrawingCommand | none | PageLayout_LayoutToolbar | Makes active data frame the target for graphics you draw in Layout View |
| Command | Change Layout | ChangeLayout | Page Layout | {29223B07-D8FC-11D3-9305-00600802E603} esriArcMapUI.ChangeLayoutCommand | none | PageLayout_LayoutToolbar | Change the layout by selecting a predefined template |
| Toolbar | Map Cache | ArcMapUI_MapCacheToolBar | none | {2ADD083E-CC5B-40E5-A433-83544529D6B3} esriArcMapUI.MapCacheToolBar | none | none | none |
| Command | Build Map Cache | ArcMapUI_BuildMapCacheCommand | MapCache | {FD2362EC-4833-4B09-A57E-687A6846052E} esriArcMapUI.BuildMapCacheCommand | none | ArcMapUI_MapCacheToolBar | Builds a cache of the features in the current map extent. |
| Command | Empty Map Cache | ArcMapUI_EmptyMapCacheCommand | MapCache | {CF03FCC1-BAA8-4436-A255-B1533C36F8E8} esriArcMapUI.EmptyMapCacheCommand | none | ArcMapUI_MapCacheToolBar | Empties the map cache. |
| Command | Toggles Auto-Cache | ArcMapUI_AutoMapCacheToggle | MapCache | {EE9CF9A8-8C35-44A9-8125-FE0969241678} esriArcMapUI.AutoMapCacheToggleCommand | none | ArcMapUI_MapCacheToolBar | Toggles the automatic creation of the map's feature cache. |
| Command | Set Auto-Cache Scale | ArcMapUI_SetMaxMapCacheScaleCommand | MapCache | {279664EF-9F37-4A4C-8B34-0425A253022E} esriArcMapUI.SetMaxMapCacheScaleCommand | none | ArcMapUI_MapCacheToolBar | Set the maximum scale for automatically creating the map cache. |
| Command | Clear Auto-Cache Scale | ArcMapUI_ClearMaxMapCacheScaleCommand | MapCache | {AB00B89B-A3B0-4FD3-A421-8624A69E956D} esriArcMapUI.ClearMaxMapCacheScaleCommand | none | ArcMapUI_MapCacheToolBar | Clear the automatic cache maximum scale. |
| Command | Show Map Cache | ArcMapUI_ShowMapCacheCommand | MapCache | {25543F24-034C-4C04-8CFF-3C5760C3DBB2} esriArcMapUI.ShowMapCacheCommand | none | ArcMapUI_MapCacheToolBar | Displays the extent of the map cache. |
| Command | Zoom To Map Cache | ArcMapUI_ZoomToMapCacheCommand | MapCache | {8DC545DD-CFA1-4B99-B273-583DDEE10961} esriArcMapUI.ZoomToMapCacheCommand | none | ArcMapUI_MapCacheToolBar | Zooms the map to the extent of the map cache. |
| Toolbar | Network Analyst | Network Analyst | none | {C967BD39-1118-42EE-AAAB-B31642C89C3E} esriNetworkAnalystUI.NetworkAnalystExtension | none | none | none |
| Menu | Network Analyst | NetworkSolvers_Menu | none | {388AC978-AB0B-48A3-A905-86FC44A3A341} esriNetworkAnalystUI.NetworkAnalystSolverMenu | none | Network Analyst | none |
| Command | { Commands } | { } | none | {301857E8-C2F9-4CEB-83ED-F5AF5402D6D2} esriNetworkAnalystUI.NAAddAnalysisLayerContextMenuItems | none | NetworkSolvers_Menu | none |
| Command | Options | NAOptions Command | Network Analyst | {356BACA2-F780-4722-8A76-A08A2904E351} esriNetworkAnalystUI.NAOptionsCommand | none | NetworkSolvers_Menu | Network Analyst Options |
| Command | Network Analyst Window | NetworkAnalystWindow Command | Network Analyst | {601FDC37-D541-42F9-A11F-DD5CEA6315DD} esriNetworkAnalystUI.NAWindowCommand | none | Network Analyst | Show/Hide the Network Analyst Window |
| Command | Create Network Location | NAEditLocation Tool | Network Analyst | {C7877BC8-BD63-473F-A6AC-08D806152400} esriNetworkAnalystUI.NetworkLocationEditTool | none | Network Analyst | Create Network Location |
| Command | Select/Move Network Locations | NAEditLocation Tool | Network Analyst | {B59C0FAC-49CD-4F5F-92CB-C6B6A7D8D473} esriNetworkAnalystUI.NetworkLocationSelectTool | none | Network Analyst | Select/Move Network Locations |
| Command | Solve | NASolve Command | Network Analyst | {F0FD65E0-4BBF-41E5-9190-B6F3C0DCE364} esriNetworkAnalystUI.NetworkAnalystSolveCommand | none | Network Analyst | Run the current analysis |
| Command | Directions Window | NetworkAnalyst_DirectionsWindow | Network Analyst | {DD10DF2A-B919-4B49-9A57-C0215FD2C8D6} esriNetworkAnalystUI.NADirectionsCommand | none | Network Analyst | Display Directions Window |
| Command | Network Dataset Layer List | NetworkLayers List | Network Analyst | {1A3352FA-C7C9-4BA4-B7C4-17FA40EDADA1} esriNetworkAnalystUI.NetworkLayerList | none | Network Analyst | Active Network Dataset Layer |
| Command | Network Identify | Network Identify Tool | Network Analyst | {83DF2383-2B01-47C5-98CE-CF6F73DA9A27} esriNetworkAnalystUI.NetworkIdentifyTool | none | Network Analyst | Identify Network Elements |
| Command | Build Entire Network Dataset | NetworkDataset_BuildFullExtentCommand | Network Analyst | {6F88C94D-1F6E-4C22-B9C5-E2D9677E66D5} esriNetworkAnalystUI.BuildFullExtentCommand | none | Network Analyst | Builds network dataset for the full extent |
| Toolbar | Publisher | Publisher_PublisherToolbar | none | {39F93294-E4A7-412B-A318-971506EC2AF9} esriPublisherUI.PublishToolbar | none | none | none |
| Menu | Publisher | Publish_PublishMenu | none | {4912E7AB-AFD3-4A66-A2AF-F39385D73D43} esriPublisherUI.PublishMenu | none | Publisher_PublisherToolbar | none |
| Command | Publisher Map Title | Publisher_Dynamic Title | Publisher | {9AD38AB2-F1BD-4546-940B-B84CD50866DC} esriPublisherUI.AddPMFTitleTextCommand | none | Publish_PublishMenu | Add a title which can be changed when printing/viewing in ArcReader |
| Command | Create Data Package | Publisher_Data Packaging | Publisher | {B3791413-3D17-4307-A240-DE44E69C3407} esriPublisherUI.PublishDataPackageCommand | none | Publish_PublishMenu | Create a data package for the selected PMF files(s) |
| Command | Map Contents Summary | Publisher_Data Analysis | Publisher | {97AE9120-EA9F-4C18-AD18-8877D0811CCB} esriPublisherUI.PublishDataAnalysisCommand | none | Publish_PublishMenu | Analyze the contents of the the map and report findings |
| Command | Publish Map | Publisher_Publish Map | Publisher | {CEFED3B7-5F2E-45E2-BC3F-3EDEB4587E69} esriPublisherUI.PublishPMFCommand | none | Publish_PublishMenu | Publish current Map for use with ArcReader |
| Command | Settings | Publisher_Publish Options | Publisher | {8849FD12-9ABE-441E-8A72-9AAB513AF0C5} esriPublisherUI.PublishOptionsCommand | none | Publish_PublishMenu | Specify settings for how the published map will work in ArcReader |
| Command | Publish Map | Publisher_Publish Map | Publisher | {CEFED3B7-5F2E-45E2-BC3F-3EDEB4587E69} esriPublisherUI.PublishPMFCommand | none | Publisher_PublisherToolbar | Publish current Map for use with ArcReader |
| Command | Create Data Package | Publisher_Data Packaging | Publisher | {B3791413-3D17-4307-A240-DE44E69C3407} esriPublisherUI.PublishDataPackageCommand | none | Publisher_PublisherToolbar | Create a data package for the selected PMF files(s) |
| Toolbar | Raster Painting | ArcScan_RasterPaintingToolBar | none | {3D224EED-3150-4C3E-9D46-586D288279B4} esriArcScan.RasterCleanupToolBar | none | none | none |
| Command | Brush | ArcScan_Brush | ArcScan | {CD31B26E-EEE9-4AF4-9796-7079379E33B9} esriArcScan.BrushTool | none | ArcScan_RasterPaintingToolBar | Brush Tool |
| Command | Select Brush Size | ArcScan_BrushSizePalette | ArcScan | {9EAD2D65-88AE-4899-B689-65BAB22133BA} esriArcScan.BrushSizePaletteCommand | none | ArcScan_RasterPaintingToolBar | Select Brush Size |
| Command | Fill | ArcScan_Fill | ArcScan | {45DDD0BE-4AB1-469C-AE9C-E64F66A252CB} esriArcScan.FillTool | none | ArcScan_RasterPaintingToolBar | Fill Tool |
| Command | Draw Tools | ArcScan_DrawTools | ArcScan | {B087AB73-531D-4CA2-A3FF-1C06770D2EDE} esriArcScan.DrawToolsPalette | none | ArcScan_RasterPaintingToolBar | Draw Line |
| Command | Select Line Width | ArcScan_LineWidthPalette | ArcScan | {F54C205D-0855-4029-9A30-DC2DDE5D66B1} esriArcScan.LineWidthPaletteCommand | none | ArcScan_RasterPaintingToolBar | Select Line Width |
| Command | Erase | ArcScan_Erase | ArcScan | {8093D506-CC18-465B-984E-B1FD4950CB94} esriArcScan.EraseTool | none | ArcScan_RasterPaintingToolBar | Erase |
| Command | Select Erase Size | ArcScan_EraseSizePalette | ArcScan | {D3CDFB42-3024-4623-9C8C-499C7F6502E7} esriArcScan.EraseSizePaletteCommand | none | ArcScan_RasterPaintingToolBar | Select Erase Size |
| Command | Swaps BG/FG | ArcScan_SwapFGBGColor | ArcScan | {53CAF642-0FA5-4053-8FFD-0D2C135F504B} esriArcScan.SwapFGBGColor | none | ArcScan_RasterPaintingToolBar | Swaps the cleanup tool's foreground and background colors. |
| Command | Magic Erase | ArcScan_MagicErase | ArcScan | {7EE9895A-3A90-4CAA-B153-DA36F0A88412} esriArcScan.VectorizationMagicEraseTool | none | ArcScan_RasterPaintingToolBar | Erase the connected cells by clicking or dragging a box. |
| Toolbar | Representation | Representation | none | {3E042332-3671-4C90-AE89-8BBD4F399E96} esriEditor.RepresentationToolbar | none | none | none |
| Menu | Representation | Representation_RepresentationMenu | none | {544231D0-FB25-4DB8-8BC7-748E9E327DC8} esriEditor.RepresentationMenu | none | Representation | none |
| Command | Make Invisible | Representation_MakeInvisible | Representation | {D2916EF6-9EC7-4C4A-8676-25014F32EE96} esriEditor.MakeInvisibleCommand | none | Representation_RepresentationMenu | Make selected representations invisible |
| Command | Make Visible | Representation_MakeVisible | Representation | {960487FC-43E3-4E3B-941B-5A995A36FF7F} esriEditor.MakeVisibleCommand | none | Representation_RepresentationMenu | Make selected representations visible |
| Command | Clear Shape Overrides | Representation_ClearShapeOverrides | Representation | {A76178D7-688A-4584-A8CF-772AD7BF5A66} esriEditor.ClearShapeOverridesCommand | none | Representation_RepresentationMenu | Clear the shape override of selected representations |
| Command | Clear Property Overrides | Representation_ClearAttributesOverrides | Representation | {2E0F268B-548C-4DF3-979B-52C536EC6D1D} esriEditor.ClearAttributesOverridesCommand | none | Representation_RepresentationMenu | Clear all property overrides of selected representations |
| Menu | Free Representation | Representation_FreeRepresentationMenu | none | {492C344F-33E7-4495-B8B8-9D954A4DADF3} esriEditor.FreeRepresentationMenu | none | Representation_RepresentationMenu | none |
| Command | Convert to Free Representation | Representation_ConvertToFreeRepresentation | Representation | {1ED8AD85-FA1E-4F68-AC40-83449238E0E4} esriEditor.ConvertToFreeRepCommand | none | Representation_FreeRepresentationMenu | Convert the selected representation to a free representation |
| Command | Convert Effect to Geometry | Representation_ConvertToEffect | Representation | {1991745E-B98E-40C3-892D-685DFFC525FA} esriEditor.ConvertEffectCommand | none | Representation_FreeRepresentationMenu | Replace the geometry by the result of the first effect or marker placement |
| Command | Ungroup Elements | Representation_UnshareSymbol | Representation | {0D5BDAC8-CDD4-4FFB-B2BB-D69C2CE6DFEA} esriEditor.UnshareSymbolCommand | none | Representation_FreeRepresentationMenu | Make each part of a multipart geometry an individual element |
| Command | Separate Symbol Layers | Representation_SeparateLayers | Representation | {A0EF6FE6-DF62-4620-BF42-9602E5D99756} esriEditor.SeparateLayersCommand | none | Representation_FreeRepresentationMenu | Make each symbol layer an individual element |
| Command | Delete Element | Representation_DeleteComponent | Representation | {E90F5A46-59D5-4BBE-92E3-A894B063813C} esriEditor.DeleteComponentCommand | none | Representation_FreeRepresentationMenu | Delete the selected element from a free representation |
| Command | Edit Free Representation | Representation_EditFreeRepresentation | Representation | {FB0C029E-C288-469B-8DA1-62EBF140ACEC} esriEditor.EditFreeRepCommand | none | Representation_FreeRepresentationMenu | Edit the selected free representation using the free representation editor |
| Command | Select | Representation_Select | Representation | {43E58C82-FEDF-4E1A-9137-DE91D32A6E10} esriEditor.ToolSelect | none | Representation | Selects representations |
| Command | Direct Select | Representation_DirectSelect | Representation | {DF93E6F6-20A5-4D6A-BCB5-EE48FAC7B4E9} esriEditor.ToolSelectGeom | none | Representation | Allows direct geometry editing |
| Command | Lasso Select | Representation_LassoSelect | Representation | {F8EEC4C9-B15C-4C7A-9EF6-3193EF68A146} esriEditor.ToolLassoBlack | none | Representation | Selects representations using a lasso gesture |
| Command | Lasso Direct Select | Representation_LassoDirectSelect | Representation | {E1CB1876-FD7E-499E-901E-48F3C6DB79DA} esriEditor.ToolLassoWhite | none | Representation | Allows direct geometry selection using a lasso gesture |
| Command | Vertex Tools | Representation_ToolVertexPalette | Representation | {B9340A2F-5895-4B5F-97DF-74F6AB70DC4A} esriEditor.ToolVertexPalette | none | Representation | Insert Vertex |
| Command | Warp | Representation_Warp | Representation | {08E51511-04D5-4A21-9217-2AD119CE8289} esriEditor.ToolWarp | none | Representation | Warps representations |
| Command | Move Parallel | Representation_MoveParallel | Representation | {5535CCC0-7497-4173-88E1-06DD25D23068} esriEditor.ToolMoveParallel | none | Representation | Moves selected geometries parallel |
| Command | Erase Tools | Representation_ToolErasePalette | Representation | {635A76DE-08AD-4E11-89E6-84A0834F19C5} esriEditor.ToolErasePalette | none | Representation | Erase geometry |
| Command | Rotate/Orient Tools | Representation_ToolRotatePalette | Representation | {569F6BB8-07D0-4B75-8558-27194AF0A66A} esriEditor.ToolRotatePalette | none | Representation | Rotates representations |
| Command | Resize | Representation_Resize | Representation | {CC557543-AB98-4E47-B1D3-EB88A4E0FF91} esriEditor.ToolResize | none | Representation | Resizes representations |
| Command | Move/Offset Tools | Representation_ToolOffsetPalette | Representation | {DF71E076-B15E-437A-B274-866993D495B2} esriEditor.ToolOffsetPalette | none | Representation | Moves representations |
| Command | Representation Properties | Representation_PropertiesWindow | Representation | {A264AEFF-5B04-4184-9251-D11069BEBD96} esriEditor.GraphicPropWndCommand | none | Representation | Open a dockable window showing the properties of the selected representation(s) |
| Toolbar | Route Editing | RouteEditingToolbar | none | {4733FE06-1DBE-4516-AAAA-5CEF479C52D8} esriLocationUI.RouteEditingToolbar | none | none | none |
| Command | Line sub-portion Tool. | SubSketch_2Pts | Route Editing Commands | {F4C0338C-BA18-478D-BCC3-3E945ED69D66} esriLocationUI.SubSketch2PtsTool | none | RouteEditingToolbar | Defines portion of the selected line feature to modify |
| Command | Make Route | MakeRouteCommand | Route Editing Commands | {2D63BBEF-94EF-41A1-9DB3-878BC9062551} esriLocationUI.MakeRouteCommand | none | RouteEditingToolbar | Makes a route from the selected line features |
| Command | Calibrate Route Feature | CalibrateRouteCommand | Route Editing Commands | {2C4F36F6-5B07-4364-8A94-D2744AB277AC} esriLocationUI.CalibrateRouteCommand | none | RouteEditingToolbar | Calibrates the selected route's measures with points |
| Toolbar | Schematic Editor | SchematicEditor_Toolbar | none | {437FD330-6BEA-4D6C-ADD6-3380143AF1B2} esriSchematicUI.SchematicEditorToolBar | none | none | none |
| Menu | Schematic Editor | Schematic_SchematicEditorMenu | none | {DD783699-BD54-4601-8861-4BC6D17E483D} esriSchematicUI.SchematicEditorMenu | none | SchematicEditor_Toolbar | none |
| Menu | Align Nodes | Schematic_SchematicAlignNodesMenu | none | {79CF627E-89AA-470F-9193-EA12F1160EBC} esriSchematicUI.SchematicAlignNodesMenu | none | Schematic_SchematicEditorMenu | none |
| Command | Align Horizontally | Schematic_AlignNodesHorizontal | Schematics | {D9EEDCFE-97B8-497A-B838-43CB4A891D92} esriSchematicUI.SchematicAlignNodesHorizontalCommand | none | Schematic_SchematicAlignNodesMenu | Aligns the selected schematic nodes horizontally |
| Command | Align Vertically | Schematic_AlignNodesVertical | Schematics | {4310F310-F488-4065-A36E-7CD4555718E3} esriSchematicUI.SchematicAlignNodesVerticalCommand | none | Schematic_SchematicAlignNodesMenu | Aligns the selected schematic nodes vertically |
| Command | Align By Angle | Schematic_AlignNodesByAngle | Schematics | {6680B431-1D58-4FD4-8D19-D6F1F493ED8B} esriSchematicUI.SchematicAlignNodesByAngleCommand | none | Schematic_SchematicAlignNodesMenu | Align the selected schematic nodes along a user defined angle |
| Menu | Collapse/Expand | Schematic_SchematicCollapseExpandMenu | none | {ED8C1A21-8E18-49A1-B48D-B4502AF7F8EE} esriSchematicUI.SchematicCollapseExpandMenu | none | Schematic_SchematicEditorMenu | none |
| Command | Collapse Hierarchy | Schematic_Collapse | Schematics | {530CAED8-6DF3-41A1-B4A2-1B1C89820BA1} esriSchematicUI.SchematicElementCollapseCommand | none | Schematic_SchematicCollapseExpandMenu | Collapses a branch from a selected schematic node |
| Command | Collapse Selected Set | Schematic_CollapseAll | Schematics | {33351D4E-B815-4CA8-B763-946F7087E1A5} esriSchematicUI.SchematicElementCollapseAllCommand | none | Schematic_SchematicCollapseExpandMenu | Collapse selected schematic elements |
| Command | Expand By Level | Schematic_Expand | Schematics | {7F139EA7-2C3E-4021-AC2C-572CF60CD37F} esriSchematicUI.SchematicElementExpandCommand | none | Schematic_SchematicCollapseExpandMenu | Expand by level the selected collapsed schematic node |
| Command | Expand All | Schematic_ExpandAll | Schematics | {27F0ED19-185D-4482-9341-D52A3416F885} esriSchematicUI.SchematicElementExpandAllCommand | none | Schematic_SchematicCollapseExpandMenu | Fully expand the selected collapsed schematic node |
| Command | Restore Symbol Sizes | Schematic_SymbolSizeRestore | Schematics | {0DBAF500-620B-404E-BD67-60B0B9561A8F} esriSchematicUI.SchematicRestoreSymbolSizeCommand | none | Schematic_SchematicEditorMenu | Restore symbol size of all or a selected set of schematic nodes |
| Command | Restore Label Sizes | Schematic_TextSizeRestore | Schematics | {5ED09581-127A-4830-A77D-71B2458C5E6E} esriSchematicUI.SchematicRestoreTextSizeCommand | none | Schematic_SchematicEditorMenu | Restore label size of all or a selected set of schematic elements owning these labels |
| Command | Bypass Nodes | Schematic_BypassNodes | Schematics | {8B0DC417-8CED-415A-AF83-8F0549234CDC} esriSchematicUI.SchematicBypassNode | none | Schematic_SchematicEditorMenu | Redraw schematic links to avoid node crossings |
| Command | Reduce Nodes | Schematic_ReduceNode | Schematics | {33B2E88A-0DDC-4F91-8464-B709C3F8166B} esriSchematicUI.SchematicReduceNode | none | Schematic_SchematicEditorMenu | Reduce all the selected schematic nodes |
| Command | Remove Schematic Elements | Schematic_DeleteElements | Schematics | {7652B418-0F98-48B5-8A7E-9A52A3A54F4D} esriSchematicUI.SchematicDeleteElementCommand | none | Schematic_SchematicEditorMenu | Remove the selected schematic elements |
| Command | Remove Schematic Vertices | Schematic_RemoveLinkPoints | Schematics | {9C6F401F-9FE3-48B5-89C1-6BA1B86497ED} esriSchematicUI.SchematicRemoveLinkPoints | none | Schematic_SchematicEditorMenu | Remove all schematic vertices on the selected links |
| Command | Rotate Tree | Schematic_RotateTree | Schematics | {FD409EE9-1393-470B-B588-D2FBC889D1A4} esriSchematicUI.SchematicRotateTree | none | Schematic_SchematicEditorMenu | Rotate the tree from a selected schematic node |
| Command | Square Links | Schematic_SquareLinks | Schematics | {8B68A493-3DDA-441F-BA3B-B6121963BA62} esriSchematicUI.SchematicSquareLinks | none | Schematic_SchematicEditorMenu | Insert vertices or use existing vertices to square selected schematic links |
| Command | Mark Crossings | Schematic_MarkCrossings | Schematics | {748AA54F-9368-4E99-99A7-2AFF5436ACFD} esriSchematicUI.SchematicMarkCrossings | none | Schematic_SchematicEditorMenu | Mark the intersections between horizontal and vertical segments |
| Command | Editing Properties | Editing_Schematic_Options | Schematics | {6A3E90F1-CDAC-4DFD-A9F0-EF10568978B1} esriSchematicUI.SchematicEditingOptionsCommand | none | Schematic_SchematicEditorMenu | Display the schematic editing properties |
| Command | Select Schematic Elements | Schematic_SelectElement | Schematics | {428854ED-FB01-47AF-83B9-FF2AE2CA8ABA} esriSchematicUI.SelectElementTool | none | SchematicEditor_Toolbar | Select schematic elements by clicking or dragging a box |
| Command | Edit/Move Schematic Elements | Schematic_MoveElement | Schematics | {E0303F35-0BB5-4070-AE71-54B703BE0F4D} esriSchematicUI.SchematicMoveElementTool | none | SchematicEditor_Toolbar | Select and move schematic elements by clicking or dragging a box |
| Command | Edit Tools | Schematic_ToolsEditCommands | Schematics | {E46053A1-0EFB-4F84-A724-3B50599F77A2} esriSchematicUI.SchematicToolsEditCommandPalette | none | SchematicEditor_Toolbar | Add a vertex on the link by clicking along the link |
| Command | Decrease Symbol Sizes | Schematic_SymbolSizeDecrease | Schematics | {9B9FC0B5-BE2C-4962-9892-2E5941280214} esriSchematicUI.SchematicDecreaseSymbolSizeCommand | none | SchematicEditor_Toolbar | Decrease the size of all or a selected set of symbols |
| Command | Increase Symbol Sizes | Schematic_SymbolSizeIncrease | Schematics | {A3986130-53E1-4C6F-A541-05EEB7808175} esriSchematicUI.SchematicIncreaseSymbolSizeCommand | none | SchematicEditor_Toolbar | Increase the size of all or a selected set of symbols |
| Command | Decrease Label Sizes | Schematic_TextSizeDecrease | Schematics | {A3451E5E-8136-4A72-A0FD-02C7B1941D5E} esriSchematicUI.SchematicDecreaseTextSizeCommand | none | SchematicEditor_Toolbar | Decrease the size of all or a selected set of labels |
| Command | Increase Label Sizes | Schematic_TextSizeIncrease | Schematics | {EFE87070-12E9-4E26-BE5C-1C09F5DB1FB2} esriSchematicUI.SchematicIncreaseTextSizeCommand | none | SchematicEditor_Toolbar | Increase the size of all or a selected set of labels |
| Command | Layout Task Dropdown List | Schematic_SchematicLayoutControl | Schematics | {E54A1C6C-2C60-4F07-A721-9831E6E238C9} esriSchematicUI.SchematicLayoutControl | none | SchematicEditor_Toolbar | Select schematic diagram layout |
| Command | Apply Layout Task | Schematic_LayoutExecute | Schematics | {B2FA7EF6-85DD-4BD3-90F4-467EF68878AE} esriSchematicUI.SchematicLayoutExecuteCommand | none | SchematicEditor_Toolbar | Perform selected schematic layout task |
| Command | Set Schematic Root | Schematic_SelectRoot | Schematics | {3BF8666A-1630-4DC2-A450-ABC56403B8CF} esriSchematicUI.SelectRootTool | none | SchematicEditor_Toolbar | Define a schematic root element by clicking it |
| Command | Set Schematic End | Schematic_SelectEnd | Schematics | {71FB45E7-4854-4855-8877-B7866B2BB0E6} esriSchematicUI.SelectEndTool | none | SchematicEditor_Toolbar | Define a schematic end element by clicking it |
| Command | Layout Properties | Schematic_LayoutProperties | Schematics | {B04BF85C-9D31-4296-AD43-585CCEDF131C} esriSchematicUI.SchematicLayoutPropertiesCommand | none | SchematicEditor_Toolbar | Show the selected schematic layout properties form |
| Toolbar | Schematic Network Analyst | SchematicUtilityNetworkAnalyst_Toolbar | none | {5CFA69C8-8344-4B12-BBD2-67F2C7F431FC} esriSchematicUI.SchematicNetworkAnalystToolBar | none | none | none |
| Command | Schematic Trace Task Dropdown List | Schematic_SchematicNetworkAnalystControl | Schematics | {CA5BCF29-7CCE-4CC1-8C71-C0108F3DF08D} esriSchematicUI.SchematicNetworkAnalystControl | none | SchematicUtilityNetworkAnalyst_Toolbar | Select schematic network analyst trace task |
| Command | Apply Trace Task | Schematic_NetworkAnalystExecute | Schematics | {A1635BCA-7AEF-410F-BA88-AAA67C5F9DF1} esriSchematicUI.SchematicNetworkAnalystExecuteCommand | none | SchematicUtilityNetworkAnalyst_Toolbar | Perform selected schematic network analyst trace task |
| Command | Network Analyst Trace Properties | Schematic_NetworkAnalystProperties | Schematics | {FC019D18-BA8A-44BD-B841-89C1F089B699} esriSchematicUI.SchematicNetworkAnalystPropertiesCommand | none | SchematicUtilityNetworkAnalyst_Toolbar | Show the selected schematic network analyst trace properties form |
| Command | Clear Trace Task Result | Schematic_NetworkAnalystClearResult | Schematics | {5FA75B35-6CDB-46DA-9370-0DDB159AED48} esriSchematicUI.SchematicNetworkAnalystClearResultCommand | none | SchematicUtilityNetworkAnalyst_Toolbar | Clear network analyst trace task result |
| Toolbar | Spatial Adjustment | Adjustment_AdjustmentToolBar | none | {96CE2DBC-515C-42A5-8478-3C4FE92E8151} esriEditorExt.AdjustmentToolBar | none | none | none |
| Menu | Spatial Adjustment | Adjustment_AdjustmentMenu | none | {9B61DE5F-55E1-4FF1-A529-2C581A4E9083} esriEditorExt.AdjustmentMenu | none | Adjustment_AdjustmentToolBar | none |
| Command | Set Adjust Data | Adjust_SetDataCommand | Adjustment | {9B3BBF56-AEC5-4821-85E4-7143B7A10618} esriEditorExt.AdjustmentSetDataCommand | none | Adjustment_AdjustmentMenu | Opens a dialog that specifies the adjustment targets. |
| Menu | Adjustment Methods | Transformation_Menu | none | {ED09BC93-0497-45BF-9EFC-F514D69D2507} esriEditorExt.TransformationMenu | none | Adjustment_AdjustmentMenu | none |
| Command | { Adjustment Methods } | { Transformation_MenuItem } | none | {2D7A19D0-A6AE-454D-9B55-4A5A4877367C} esriEditorExt.TransformationMenuItem | none | Transformation_Menu | none |
| Command | Adjust | Adjust_Transform | Adjustment | {F4C85CD7-5E48-4A11-8EDF-F6F71DD52D8F} esriEditorExt.TransformCommand | none | Adjustment_AdjustmentMenu | Transform the features based on the current links. |
| Command | Preview Window | Adjust_PreviewWindow | Adjustment | {6CA9196B-B31C-495A-ADD4-FB14224BC588} esriEditorExt.AdjustmentPreviewWindowCommand | none | Adjustment_AdjustmentMenu | Show the adjustment preview window. |
| Menu | Links | Adjustment_LinksMenu | none | {E93A1DFD-8658-4420-B2E3-00F63C06A988} esriEditorExt.AdjustmentLinksMenu | none | Adjustment_AdjustmentMenu | none |
| Command | Open Links File | Adjust_OpenLinksCommand | Adjustment | {E774CA4B-1167-4462-A83A-1289EFE079BA} esriEditorExt.AdjustmentOpenLinksCommand | none | Adjustment_LinksMenu | Add links from a text file. |
| Command | Save Links File | Adjust_SaveLinksCommand | Adjustment | {D1BC2D87-AAC9-4CA3-BF49-F6F43F583008} esriEditorExt.AdjustmentSaveLinksCommand | none | Adjustment_LinksMenu | Save adjustment links to a text file. |
| Command | View Link Table | Adjust_LinkTable | Adjustment | {DC46F6FF-437B-49A4-9B4D-294EC117CD51} esriEditorExt.AdjustmentLinkTableCommand | none | Adjustment_LinksMenu | Shows the adjustment link table. |
| Command | Open Control Points File | Adjust_OpenControlFileCommand | Adjustment | {6F4F7B5C-3E90-475B-B6A2-250D036B15E5} esriEditorExt.AdjustmentOpenControlFileCommand | none | Adjustment_LinksMenu | Add the control points in a file to the control point list dialog. |
| Command | View Control Points | Adjust_ViewControlPointsCommand | Adjustment | {1AD3FCE8-D6A7-4F5F-8D7F-7FF2E429ADB4} esriEditorExt.AdjustmentViewControlPointsCommand | none | Adjustment_LinksMenu | Displays the control points dialog. |
| Command | Attribute Transfer Mapping | AttributeTransfer_FieldMapping | Attribute transfer | {105B2AA7-510C-455E-9F92-C01B7353C380} esriEditorExt.FieldMappingCommand | none | Adjustment_AdjustmentMenu | Sets up the field mappings for attribute transfer. |
| Command | Options | Adjust_PropertiesCommand | Adjustment | {66298A38-3088-421A-ADC1-6CFBD3808672} esriEditorExt.AdjustmentPropertiesCommand | none | Adjustment_AdjustmentMenu | Opens the adjustment options dialog. |
| Command | Select Elements | PageLayout_SelectTool | Page Layout | {C22579D1-BC17-11D0-8667-0000F8751720} esriArcMapUI.SelectTool | none | Adjustment_AdjustmentToolBar | Select, resize and move text, graphics and other objects placed on the map |
| Command | New Displacement Link | Adjustment_DisplacementLink | Adjustment | {6DE5AB63-E4FD-4190-86C8-26959899CCB2} esriEditorExt.DisplacementLinkTool | none | Adjustment_AdjustmentToolBar | Create a new displacement link. |
| Command | Modify Link | Adjustment_ModifyLink | Adjustment | {00432E2F-8746-4D13-B9FC-29465E16F054} esriEditorExt.ModifyLinkTool | none | Adjustment_AdjustmentToolBar | Modify an existing displacement link. |
| Command | Multi Displacement Links | Adjust_Multi_Disp_Link | Adjustment | {CA77849E-EA6B-460C-A0BB-71E58E65DEE7} esriEditorExt.MultiDisplacementLinkTool | none | Adjustment_AdjustmentToolBar | Automatically adds displacement links between the two selected features. |
| Command | New Identity Link | Adjustment_IdentityLink | Adjustment | {E169D2F2-3670-4157-BB3C-220842C9FEFD} esriEditorExt.IdentityLinkTool | none | Adjustment_AdjustmentToolBar | Creates a point on the source layer that will not move. |
| Command | New Limited Adjustment Area | Adjustment_LimitAdjust | Adjustment | {86640A41-2445-49D6-86E6-2494FEF8CB99} esriEditorExt.LimitAdjustTool | none | Adjustment_AdjustmentToolBar | Limits the area that will be adjusted. Links outside the area will not participate in the adjustment. |
| Command | Clear Limited Adjustment Area | Adjust_ClearLimitedAdjustmentAreaCommand | Adjustment | {9AF60F78-C3A4-4EB2-AA01-A1B41254C9C9} esriEditorExt.ClearLimitedAdjustmentAreaCommand | none | Adjustment_AdjustmentToolBar | Clear Limited Adjustment Area |
| Command | View Link Table | Adjust_LinkTable | Adjustment | {DC46F6FF-437B-49A4-9B4D-294EC117CD51} esriEditorExt.AdjustmentLinkTableCommand | none | Adjustment_AdjustmentToolBar | Shows the adjustment link table. |
| Command | Edge Match | Adjustment_EdgeMatchTool | Adjustment | {FF874FE8-8DDC-4DFF-ADF2-CCA6A7C28755} esriEditorExt.EdgeMatchTool | none | Adjustment_AdjustmentToolBar | Drag a rectangle containing features to be matched. |
| Command | Attribute Transfer Tool | AttributeTransfer_Tool | Attribute transfer | {A5C24779-D749-457B-912C-09967BE617F9} esriEditorExt.AttributeTransferTool | none | Adjustment_AdjustmentToolBar | Transfer feature attributes by selecting two features. |
| Toolbar | Spatial Analyst | Spatial Analyst | none | {8B86EDFB-A6C3-11D2-9F39-00C04F8ED1D7} esriSpatialAnalystUI.RasterAnalysisToolBar | none | none | none |
| Menu | Spatial Analyst | SpatialAnalysis_Menu | none | {D5FB57C4-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAAnalysisMenu | none | Spatial Analyst | none |
| Menu | Distance | Distance_Menu | none | {D5FB57C2-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SADistanceMenu | none | SpatialAnalysis_Menu | none |
| Command | Straight Line | Analysis_EucDistance | Spatial Analyst | {D5FB57C3-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SADistanceMenuItem | 1 | Distance_Menu | Calculates for each cell the Euclidean distance to the closest source |
| Command | Allocation | Analysis_EucAllocation | Spatial Analyst | {D5FB57C3-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SADistanceMenuItem | 2 | Distance_Menu | Calculates for each cell its nearest source |
| Command | Cost Weighted | Analysis_Costdistance | Spatial Analyst | {D5FB57C3-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SADistanceMenuItem | 3 | Distance_Menu | Calculates for each cell the least-accumulative-cost distance over a cost surface |
| Command | Shortest Path | Analysis_Costpath | Spatial Analyst | {D5FB57C3-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SADistanceMenuItem | 4 | Distance_Menu | Calculates the shortest cost path from a source to a destination |
| Command | Density | Analysis_Density | Spatial Analyst | {A2ABAF2D-210C-4877-ACD1-6AE745BC94C5} esriSpatialAnalystUI.SADensityItem | none | SpatialAnalysis_Menu | Calculates a magnitude per unit area from points |
| Menu | Interpolate to Raster | Interpolate_Menu | none | {D5FB57C5-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenu | none | SpatialAnalysis_Menu | none |
| Command | Inverse Distance Weighted | Analysis_IDW | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 1 | Interpolate_Menu | Interpolate a surface from points using an inverse distance weighted technique |
| Command | Spline | Analysis_Spline | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 2 | Interpolate_Menu | Interpolate a surface from points using a minimum curvature spline technique |
| Command | Kriging | Analysis_Kriging | Surface | {D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SAInterpolateMenuItem | 3 | Interpolate_Menu | Interpolate a surface from points using Kriging |
| Menu | Surface Analysis | Surface_Menu | none | {D5FB57C7-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenu | none | SpatialAnalysis_Menu | none |
| Command | Contour | Analysis_Contour | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 1 | Surface_Menu | Creates contours or isolines from a surface |
| Command | Slope | Analysis_Slope | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 2 | Surface_Menu | Derives slope from a surface |
| Command | Aspect | Analysis_Aspect | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 3 | Surface_Menu | Derives aspect from a surface |
| Command | Hillshade | Analysis_HillShade | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 4 | Surface_Menu | Computes hillshade values for a surface |
| Command | Viewshed | Analysis_Viewshed | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 5 | Surface_Menu | Determines the surface locations visible to a set of input points |
| Command | Cut/Fill | Analysis_CutFill | Surface | {D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7} esriSpatialAnalystUI.SASurfaceMenuItem | 6 | Surface_Menu | Computes the cut and fill volume and area of two surfaces |
| Command | Cell Statistics | Analysis_CellStatistics | Spatial Analyst | {21B30E7A-1C9B-490C-B9D8-A5EE1EFCEF32} esriSpatialAnalystUI.SACellStatItem | none | SpatialAnalysis_Menu | Calculates a per-cell statistic from multiple rasters |
| Command | Neighborhood Statistics | Analysis_FocalStats | Spatial Analyst | {448796F4-2452-11D3-9F48-00C04F8ED1D7} esriSpatialAnalystUI.SANbrhoodMenuItem | 1 | SpatialAnalysis_Menu | Calculates a statistic on a raster over a specified neighborhood |
| Command | Zonal Statistics | Analysis_ZonalStats | Spatial Analyst | {CAC85593-1D24-11D3-9F45-00C04F8ED1D7} esriSpatialAnalystUI.SAZonalMenuItem | 1 | SpatialAnalysis_Menu | Summarizes values in a raster within the zones of another layer |
| Command | Reclassify | Analysis_Reclass | Surface | {448796F6-2452-11D3-9F48-00C04F8ED1D7} esriSpatialAnalystUI.SAReclassMenuItem | 1 | SpatialAnalysis_Menu | Reclassifies the values in a raster |
| Command | Raster Calculator | Analysis_Calculator | Spatial Analyst | {8B86EDFC-A6C3-11D2-9F39-00C04F8ED1D7} esriSpatialAnalystUI.RasterCalculatorItem | none | SpatialAnalysis_Menu | Perform map algebra calculations between raster layers |
| Menu | Convert | Conversion_Menu | none | {B9857141-3A19-11D3-9F4C-00C04F8ED1D7} esriSpatialAnalystUI.SAConversionMenu | none | SpatialAnalysis_Menu | none |
| Command | Features to Raster | Conversion_ToRaster | Surface | {B9857142-3A19-11D3-9F4C-00C04F8ED1D7} esriSpatialAnalystUI.SAConversionMenuItem | 1 | Conversion_Menu | Converts features (points, lines, polygons, etc) to a raster |
| Command | Raster to Features | Conversion_ToFeatureClass | Surface | {B9857142-3A19-11D3-9F4C-00C04F8ED1D7} esriSpatialAnalystUI.SAConversionMenuItem | 2 | Conversion_Menu | Converts a raster to features (points, lines, polygons) |
| Command | Options | Analysis_Settings | Surface | {8AC2F519-ED49-11D2-9F40-00C04F8ED1D7} esriSpatialAnalystUI.RasterSettingsItem | none | SpatialAnalysis_Menu | Displays a dialog box to edit the analysis properties |
| Command | Raster Analysis Layer List Control | Layer_LayerEffectsListControl | Spatial Analyst | {E5EA4DEB-82B7-4BE4-BA62-C50CEE451463} esriSpatialAnalystUI.RasterAnalysisLayerListControl | none | Spatial Analyst | Choose the layer for the Create Contours and Histogram tools |
| Command | Contour | Analysis_ContourTool | Spatial Analyst | {D0603EE7-9C88-4AA3-99CA-FD1AFF487373} esriSpatialAnalystUI.RasterContourToolItem | none | Spatial Analyst | Contour |
| Command | Histogram | Analysis_HistogramTool | Spatial Analyst | {A6EAFECB-D036-4D06-8108-7C2D610D8559} esriSpatialAnalystUI.RasterHistogramToolItem | none | Spatial Analyst | Histogram |
| Toolbar | Standard | Standard_Toolbar | none | {5DEB1DB8-C2A9-11D1-B9A2-080009EE4E51} esriArcMapUI.StandardToolBar | none | none | none |
| Command | New | File_New | File | {A33D9401-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.FileNewCommand | none | Standard_Toolbar | Create a new map |
| Command | Open | File_Open | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 2 | Standard_Toolbar | Open an existing map |
| Command | Save | File_Save | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 3 | Standard_Toolbar | Save the current map |
| Command | File_Print | File | {119591DB-0255-11D2-8D20-080009EE4E51} esriArcMapUI.MxFileMenuItem | 7 | Standard_Toolbar | Print the current map | |
| Command | Cut | Edit_Cut | Edit | {A33D9406-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditCutCommand | none | Standard_Toolbar | Cut the selected element(s) |
| Command | Copy | Edit_Copy | Edit | {A33D9405-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditCopyCommand | none | Standard_Toolbar | Copy the selected element(s) |
| Command | Paste | Edit_Paste | Edit | {A33D9407-7ED5-11D0-8D7C-0080C7A4557D} esriArcMapUI.EditPasteCommand | none | Standard_Toolbar | Paste the clipboard contents into your map |
| Command | Delete | Edit_Clear | Edit | {16CD71E5-98C3-11D1-873B-0000F8751720} esriArcMapUI.EditClearCommand | none | Standard_Toolbar | Delete the selected element(s) |
| Command | Undo | Edit_Undo | Edit | {FBF8C3FB-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxEditMenuItem | 1 | Standard_Toolbar | Undo the last action |
| Command | Redo | Edit_Redo | Edit | {FBF8C3FB-0480-11D2-8D21-080009EE4E51} esriArcMapUI.MxEditMenuItem | 2 | Standard_Toolbar | Redo the previously undone action |
| Command | Add Data | File_AddData | File | {E1F29C6B-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.AddDataCommand | none | Standard_Toolbar | Add new data to the map's active data frame |
| Command | Map Scale | PanZoom_Scale | Pan/Zoom | {8D43F663-DA0B-11D0-87FC-080009EC732A} esriArcMapUI.ScaleControl | none | Standard_Toolbar | Display and set the map scale |
| Command | Editor Toolbar | Tools_EditingToolbar | Tools | {E1F29C74-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.EditingToolbarCommand | none | Standard_Toolbar | Show the Editor toolbar so you can edit the map's data |
| Command | ArcCatalog | Tools_Catalog | Tools | {E1F29C71-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.CatalogCommand | none | Standard_Toolbar | Launch ArcCatalog |
| Command | ArcToolbox | ArcToolbox_ShowToolbox | ArcToolbox | {85980C3A-652A-47ED-8CD2-1B99DD060AAB} esriGeoprocessingUI.ArcToolboxCmd | none | Standard_Toolbar | Show/Hide the ArcToolbox Window |
| Command | Command Line | ArcToolbox_ShowCommandLine | ArcToolbox | {1A7E7146-BDFB-4755-93DE-100171382BFF} esriGeoprocessingUI.GPCommandLineCmd | none | Standard_Toolbar | Show/Hide the Command Line Window |
| Command | What's This? | Help_ContextHelp | Help | {81972F0D-388A-11D3-9F57-00C04F6BC61A} esriFramework.HelpTool | none | Standard_Toolbar | Get help on the menu command or tool you select |
| Toolbar | StreetMap | StreetMap | none | {0A074091-92FF-4B86-AF44-DA45731B4970} esriDataSourcesSMUUI.RouterUIToolBar | none | none | none |
| Command | Find Route | Find Route | StreetMap | {BDC68B11-B152-4933-A870-3E4271BC42CA} esriDataSourcesSMUUI.RouterUICommand | none | StreetMap | Finds routes between stops you specify using StreetMap data |
| Toolbar | Survey Analyst | SurveyAnalyst_Toolbar | none | {3602E930-4F61-11D5-B390-009027BE2299} esriSurveyExt.CompNetworkTbr | none | none | none |
| Menu | Survey Analyst | SurveyAnalyst_Menu | none | {50B2C859-928A-462B-964C-19F6EB9EAAB2} esriSurveyExt.CompNetworkMenu | none | SurveyAnalyst_Toolbar | none |
| Command | Update Survey Points | SurveyAnalyst_UpdateSurveyPoints | Survey Analyst | {6BBA582F-D4BD-4C0A-89A1-7064635DD63B} esriSurveyPkgs.SvyPntUpdateCmd | none | SurveyAnalyst_Menu | Updates all coordinates of a Survey Point which are out-of-date. |
| Command | Point In Tolerance | SurveyAnalyst_PointInTolerance | Survey Analyst | {E4C3F013-A865-4A7C-8882-05BF02C1DF08} esriSurveyPkgs.PointInTolCmd | none | SurveyAnalyst_Menu | Detect points within a certain tolerance radius of an existing point |
| Command | Coordinate Out Of Tolerance | SurveyAnalyst_CoordinateOutOfTolerance | Survey Analyst | {1655FA2B-1699-492F-8AA3-E26D10F46DCB} esriSurveyPkgs.CoordOutOfTolCmd | none | SurveyAnalyst_Menu | Shows points where coordinates are out of a certain tolerance |
| Command | Survey Editor Toolbar | SurveyAnalyst_SurveyEditorToolBarCommand | Survey Analyst | {A471303B-162F-4153-BA1C-D6C2E4C27760} esriSurveyExt.SurveyEdToolBarCmd | none | SurveyAnalyst_Menu | Show Survey Editor Toolbar |
| Command | Options | SurveyAnalyst_Properties | Survey Analyst | {82369C57-6436-492C-B651-6B3AA1EE43D2} esriSurveyExt.CompNetPropsCmd | none | SurveyAnalyst_Menu | Shows the Survey Analyst options dialog |
| Command | Survey Network | SurveyAnalyst_ActiveNetwork | Survey Analyst | {9E9E1916-5A3B-11D5-B396-009027BE2299} esriSurveyExt.SurveyNetworkCtrl | none | SurveyAnalyst_Toolbar | Computation network of selected survey project. |
| Command | Compute Survey Network | SurveyAnalyst_ComputeAll | Survey Analyst | {D2F5CA58-485E-11D5-B38A-009027BE2299} esriSurveyExt.ComputeAllCmd | none | SurveyAnalyst_Toolbar | Computes all computations of the selected survey network. |
| Command | Datum Points | SurveyAnalyst_ShowDatumPoints | Survey Analyst | {53AFED44-5EF6-11D5-B39C-009027BE2299} esriSurveyExt.ShowDatumPointsCmd | none | SurveyAnalyst_Toolbar | Shows all daum points of selected computation network in SurveyExplorer. |
| Command | Computation Log | SurveyAnalyst_ShowComputationLog | Survey Analyst | {16E63E78-4A54-4AC7-B779-A85259AA4B87} esriSurveyExt.ShowCompLogCmd | none | SurveyAnalyst_Toolbar | Shows computation log window displaying states and errors. |
| Command | Survey Point Merge Tool | SurveyAnalyst_MergeSurveyPoints | Survey Editor | {EB35A482-7B82-41E1-A277-8FFB7B1215A9} esriSurveyPkgs.SurveyPntMrgTool | none | SurveyAnalyst_Toolbar | Merge co-ordinates of From and To points |
| Toolbar | Survey Editor | SurveyEditor_Toolbar | none | {2BC6E9C2-CF6E-11D4-947B-009027BE2299} esriSurveyExt.SurveyEdToolbar | none | none | none |
| Menu | Survey Editor | SurveyEditor_Menu | none | {2BC6E9C4-CF6E-11D4-947B-009027BE2299} esriSurveyExt.SurveyEditorMenu | none | SurveyEditor_Toolbar | none |
| Command | Set Survey Layers For List | SurveyAnalyst_SelectableLayers | Survey Editor | {917F143A-2103-11D5-BAFA-46BEA9000000} esriSurveyExt.SelectableLyrsCmd | none | SurveyEditor_Menu | Choose the survey layers that let their visible objects select from the map |
| Command | Auto link SurveyPoints | SurveyAnalyst_AutoLink | Survey Feature Tools | {43F26AED-4447-11D5-921B-00508B48AE82} esriSurveyExt.AutoLinkSvyPntsCmd | none | SurveyEditor_Menu | Links are automatically created for any feature vertices that share coordinates with a survey point after the feature is edited or created |
| Command | Enable Edit Sketch | SurveyAnalyst_EnableEditSketchCommand | Survey Feature Tools | {7B9E052B-7D0F-4E4C-9B34-50E3EF4EB643} EditorEx.EnableEditSketchCommand | none | SurveyEditor_Menu | If checked, allows certain Survey Analyst tools to be used to create Features in the Edit Sketch. |
| Command | Link | SurveyAnalyst_LinkCommand | Survey Feature Tools | {71874627-486F-11D4-B1D9-00104B4C88FE} esriSurveyExt.LinkCmd | none | SurveyEditor_Menu | Link survey points, within a specified tolerance, to the vertices of selected features in survey-aware feature classes |
| Command | Unlink | SurveyAnalyst_UnlinkCommand | Survey Feature Tools | {60487EE7-D0C3-11D4-9F93-00104B4C8512} esriSurveyExt.UnlinkCmd | none | SurveyEditor_Menu | Unlink survey points from feature vertices |
| Command | Update Feature Vertices | SurveyAnalyst_FeatureUpdate | Survey Feature Tools | {6AFD0450-947E-11D4-91F5-00508B48AE82} esriSurveyExt.UpdateCmd | none | SurveyEditor_Menu | Update the selected features based on links to Survey Points |
| Command | Show Link Conflicts | SurveyAnalyst_ShowLinkConflicts | Survey Feature Tools | {D69811A1-D646-11D4-9ADF-00104B47DEC1} esriSurveyExt.ShowLinkCnflctsCmd | none | SurveyEditor_Menu | Open the link conflict dialog, and show the most recent link conflicts |
| Command | Feature To Computations | SurveyAnalyst_FeatureToComputation | Survey Feature Tools | {6D919104-5983-11D5-A041-00104B4C8512} esriSurveyExt.FromFeatr2CompsCmd | none | SurveyEditor_Menu | List the computations that define the survey points linked to the selected features |
| Command | Options | SurveyEditor_Properties | Survey Editor | {2BC6E9C6-CF6E-11D4-947B-009027BE2299} esriSurveyExt.SvyEdPropsMenuItem | none | SurveyEditor_Menu | Shows the Surveying Properties Dialog |
| Command | List Survey Objects By Query | SurveyAnalyst_SQLQuery | Survey Editor | {D28CD4E4-DB5E-11D4-BAAC-705471000000} esriSurveyExt.QueryCmd | none | SurveyEditor_Toolbar | Create a list of Survey Objects by query |
| Command | List Survey Objects Tool | SurveyAnalyst_Select | Survey Editor | {D28CD4ED-DB5E-11D4-BAAC-705471000000} esriSurveyExt.SelectTool | none | SurveyEditor_Toolbar | Create a list of Survey Objects by selecting from the map |
| Command | Show Survey Explorer | SurveyAnalyst_ShowExplorer | Survey Editor | {2BC6E9CC-CF6E-11D4-947B-009027BE2299} esriSurveyExt.ShowExplorerBtn | none | SurveyEditor_Toolbar | Shows the Survey Explorer Dialog |
| Command | Target Project | SurveyEditor_ActiveSurvey | Survey Editor | {2BC6E9CA-CF6E-11D4-947B-009027BE2299} esriSurveyExt.ActiveSurveyCntrl | none | SurveyEditor_Toolbar | Selects the Target Survey Project used when creating new Survey Objects |
| Command | Computations | Construct | Survey Editor | {EDC3D194-E24C-11D4-BAB0-8CE666000000} esriSurveyExt.COGOTool | none | SurveyEditor_Toolbar | Tool to construct features and create survey data |
| Command | Link Tool | SurveyAnalyst_LinkTool | Survey Feature Tools | {40F7B114-2682-11D4-B1BE-00104B4C88FE} esriSurveyExt.LinkTool | none | SurveyEditor_Toolbar | Links a survey point to a feature vertex |
| Command | Unlink Tool | SurveyAnalyst_UnlinkTool | Survey Feature Tools | {6AFD0453-947E-11D4-91F5-00508B48AE82} esriSurveyExt.UnlinkTool | none | SurveyEditor_Toolbar | Unlink a feature vertex from a survey point |
| Command | Show or hide Links | SurveyAnalyst_ShowHideLinks | Survey Editor | {EE583F1A-0588-474A-8511-19210F08C409} SurveyEditorUI.ShowHideLinksBtn | none | SurveyEditor_Toolbar | Shows or hides the links between Survey Points and Feature Vertexes |
| Toolbar | Survey Explorer | SurveyExplorer_Toolbar | none | {42A897DC-ED2A-11D4-BABB-88A42E000000} esriSurveyExt.SurveyExplorerTbr | none | none | none |
| Command | Previous Page | SurveyExplorer_NavigatePreviousPage | Survey Explorer | {2FF308B4-D0C4-11D4-947D-009027BE2299} esriSurveyExt.NavPrevPageCmd | none | SurveyExplorer_Toolbar | Go to the previous page of the explored survey data |
| Command | Next Page | SurveyExplorer_NavigateNextPage | Survey Explorer | {2FF308B6-D0C4-11D4-947D-009027BE2299} esriSurveyExt.NavNextPageCmd | none | SurveyExplorer_Toolbar | Go to the next page of the explored survey data |
| Command | Compute Parents | SurveyAnalyst_ComputeSelection | Survey Analyst | {35D64244-4DAD-11D5-B38D-009027BE2299} esriSurveyExt.ComputeSelectCmd | none | SurveyExplorer_Toolbar | Computes the active computation and its parents. |
| Command | Compute | SurveyAnalyst_Compute | Survey Analyst | {80E10FAB-653E-11D5-B3A4-009027BE2299} esriSurveyExt.ComputeCmd | none | SurveyExplorer_Toolbar | Computes active or selected computation(s). |
| Command | New Object | SurveyEditor_NewObject | Survey Explorer | {86AB4F04-2565-11D5-BB04-12DD44000000} esriSurveyExt.NewCmd | none | SurveyExplorer_Toolbar | Creates a new object of the same type as the currently active. |
| Command | Delete Survey Objects | SurveyEditor_DeleteObject | Survey Editor | {C180A6F8-24CB-49FF-878F-06F1EBCFC9E7} esriSurveyExt.DelSurveyObjectCmd | none | SurveyExplorer_Toolbar | Deletes the active survey objects |
| Command | Compute Dependent | SurveyAnalyst_ComputeDependent | Survey Analyst | {EFDCA37F-E58C-4A8A-9FCF-43FE5DFEC6D0} esriSurveyExt.ComputeDependntCmd | none | SurveyExplorer_Toolbar | Computes active and all its dependent computations. |
| Toolbar | Tablet | TabletPC_TabletToolbar | none | {5AC33189-928C-4488-B9AC-19D8CBCCD852} esriEditorExt.TabletToolbar | none | none | none |
| Command | Pen Tool Dropdown Palette | TabletPCSup_HighlighterDropDownPalette | Ink | {6F3098B3-686A-4118-9DDB-29573362D42A} esriControls.PenDropDown | none | TabletPC_TabletToolbar | Pen Tool Dropdown Palette |
| Command | Highlight Tool Dropdown Palette | TabletPCSup_HighlighterDropDownPalette | Ink | {275C581E-165E-4BD6-83CC-C9082019DAA6} esriControls.HLDropDown | none | TabletPC_TabletToolbar | Highlight Tool Dropdown Palette |
| Command | Eraser Tool Dropdown Palette | TabletPCSup_EraserDropDownPalette | Ink | {48612961-1308-4F95-A69D-CC3699C8B39B} esriControls.EraserDropDown | none | TabletPC_TabletToolbar | Eraser Tool Dropdown Palette |
| Command | Finish Ink Sketch | ControlToolsInk_FinishInkSketch | Ink | {9314F912-1720-45C8-BF82-FD0C179463CA} esriControls.ControlsInkFinishSketchCommand | none | TabletPC_TabletToolbar | Finish Ink Sketch |
| Command | Clear Ink Sketch | ControlToolsInk_ClearInk | Ink | {53FA1F96-07F6-494B-81A0-F766BE648008} esriControls.ControlsInkClearInkCommand | none | TabletPC_TabletToolbar | Clear Ink Sketch |
| Command | Add Ink to Sketch | ControlToolsInk_AddInkToSketch | Ink | {73D69062-9AF7-43D4-A795-7A52AB10C037} esriControls.ControlsInkAddInkToSketchCommand | none | TabletPC_TabletToolbar | Add Ink to Sketch |
| Command | Recognize Ink as Text | ControlToolsInk_Recognize | Ink | {FE900761-DDAF-40FC-858D-EA79F468A397} esriControls.ControlsInkRecognizeCommand | none | TabletPC_TabletToolbar | Recognize Ink as Text |
| Command | Reactivate | ControlToolsInk_Reactivate | Ink | {7C07663A-D51D-4D04-83D0-DE0355CCC2C2} esriControls.ControlsInkReactivateCommand | none | TabletPC_TabletToolbar | Reactivate |
| Command | Find Ink | ControlToolsInk_FindInk | Ink | {419ACB7A-A75B-4AFD-8C31-3D1EDF1B0244} esriControls.ControlsInkFindInkCommand | none | TabletPC_TabletToolbar | Find Ink |
| Command | Ink Settings | ControlToolsInk_Options | Ink | {44DD2294-55C2-4352-A692-C7F5795A76E0} esriControls.ControlsInkOptionsCommand | none | TabletPC_TabletToolbar | Ink Settings |
| Toolbar | Tools | Tools_Toolbar | none | {E1F29C75-4E6B-11D2-AE2C-080009EC732A} esriArcMapUI.BrowseToolBar | none | none | none |
| Command | Zoom In | PanZoom_ZoomIn | Pan/Zoom | {AD1891E4-7C79-11D0-8D7C-0080C7A4557D} esriArcMapUI.ZoomInTool | none | Tools_Toolbar | Zoom in by clicking a point or dragging a box |
| Command | Zoom Out | PanZoom_ZoomOut | Pan/Zoom | {F89EBCDF-967C-11D1-873A-0000F8751720} esriArcMapUI.ZoomOutTool | none | Tools_Toolbar | Zoom out by clicking a point or dragging a box |
| Command | Fixed Zoom In | PanZoom_ZoomInFixed | Pan/Zoom | {0830FB33-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.ZoomInFixedCommand | none | Tools_Toolbar | Zoom in on the center of your map |
| Command | Fixed Zoom Out | PanZoom_ZoomOutFixed | Pan/Zoom | {0830FB34-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.ZoomOutFixedCommand | none | Tools_Toolbar | Zoom out on the center of your map |
| Command | Pan | PanZoom_Pan | Pan/Zoom | {0830FB32-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.PanTool | none | Tools_Toolbar | Pans the map |
| Command | Full Extent | PanZoom_FullExtent | Pan/Zoom | {0830FB35-7EE6-11D0-87EC-080009EC732A} esriArcMapUI.FullExtentCommand | none | Tools_Toolbar | Zooms to the full extent of the map |
| Command | Go Back To Previous Extent | PanZoom_ZoomToLastExtentBack | Pan/Zoom | {3A372DD1-3ECB-11D2-A2A3-080009B6F22B} esriArcMapUI.ZoomToLastExtentBackCommand | none | Tools_Toolbar | Go back to previous extent |
| Command | Go To Next Extent | PanZoom_ZoomToLastExtentForward | Pan/Zoom | {8FD414A2-403F-11D2-A2A9-080009B6F22B} esriArcMapUI.ZoomToLastExtentForwardCommand | none | Tools_Toolbar | Go forward to next extent |
| Command | Select Features | Query_SelectFeatures | Selection | {78FFF793-98B4-11D1-873B-0000F8751720} esriArcMapUI.SelectFeaturesTool | none | Tools_Toolbar | Select features by clicking or dragging a box |
| Command | Clear Selected Features | Query_ClearSelection | Selection | {37C833F3-DBFD-11D1-AA7E-00C04FA37860} esriArcMapUI.ClearSelectionCommand | none | Tools_Toolbar | Unselect the currently selected features in all layers |
| Command | Select Elements | PageLayout_SelectTool | Page Layout | {C22579D1-BC17-11D0-8667-0000F8751720} esriArcMapUI.SelectTool | none | Tools_Toolbar | Select, resize and move text, graphics and other objects placed on the map |
| Command | Identify | ControlToolsMapInquiry_Identify | Map Inquiry | {CF605583-AEA3-41D8-9464-DDD1905243D9} esriControls.ControlsMapIdentifyTool | none | Tools_Toolbar | Identify geographic features by clicking a point or dragging a box |
| Command | Find | ControlToolsMapInquiry_Find | Map Inquiry | {CE9BB1E9-B2D4-4442-8A81-42478C81B256} esriControls.ControlsMapFindCommand | none | Tools_Toolbar | Finds features, places and addresses on the map |
| Command | Go To XY | ControlToolsMapNavigation_GoTo | Map Navigation | {C397D829-522B-490F-8249-0219EA53CFBC} esriControls.ControlsMapGoToCommand | none | Tools_Toolbar | Find XY Locations in a map |
| Command | Measure | ControlToolsMapInquiry_Measure | Map Inquiry | {47BE3CD5-19DB-4A1E-9C4A-7FA539D903C4} esriControls.ControlsMapMeasureTool | none | Tools_Toolbar | Measure distance and area on the map |
| Command | Hyperlink | Query_Hyperlink | Selection | {BD07113F-9703-11D2-AADD-000000000000} esriArcMapUI.HyperlinkTool | none | Tools_Toolbar | Triggers hyperlinks from features |
| Toolbar | Topology | Topology_TopologyToolbar | none | {A14E577C-500F-431D-90F5-615E6A08A331} esriEditorExt.TitusToolbar | none | none | none |
| Command | Choose Topology | Topology_CurrentTopologyControl | Topology | {5864B2F3-7AEC-4892-9B1F-505D8E517A9F} esriEditorExt.CurrentTopologyControl | none | Topology_TopologyToolbar | Choose the topology to work with. |
| Command | Map Topology | Topology_IntegratedLayersCommand | Topology | {7953D111-120A-4CFA-86D5-4DD93F171B55} esriEditorExt.IntegratedLayersCommand | none | Topology_TopologyToolbar | Choose which layers form a map topology for integrated editing. |
| Command | Construct Features | Topology_ConstructCommand | Topology | {05A81952-2C61-4D60-92C6-9D2737666D5C} esriEditorExt.ConstructCommand | none | Topology_TopologyToolbar | Constructs features from the selection. |
| Command | Planarize Lines | Topology_PlanarizeLinesCommand | Topology | {5E5761D0-A303-4A97-93AD-C42278AD73E0} esriEditorExt.PlanarizeLinesCommand | none | Topology_TopologyToolbar | Planarizes the selected lines. |
| Command | Topology Edit Tool | Topology_TopologyEditTool | Topology | {DC12D55A-EC2D-4F01-8C75-B407EC0959E5} esriEditorExt.TopologyEditTool | none | Topology_TopologyToolbar | Selects and edits topological elements |
| Command | Show Shared Features | Topology_SharedFeaturesCommand | Topology | {EA19EC67-4F7B-4EA6-B94E-75D23AC28149} esriEditorExt.SharedFeaturesCommand | none | Topology_TopologyToolbar | Show features sharing the selected edge |
| Command | Validate Topology In Specified Area | Topology_ValidateTopologyTool | Topology | {57938DD2-737C-44D9-BD53-3B7710357DB5} esriEditorExt.ValidateTopologyTool | none | Topology_TopologyToolbar | Validates topology in area specified with cursor |
| Command | Validate Topology In Current Extent | Topology_ValidateVisibleExtentCommand | Topology | {8FDE78D4-5160-4410-B611-C179F003680B} esriEditorExt.ValidateVisibleExtentCommand | none | Topology_TopologyToolbar | Validates topology in current extent of data frame |
| Command | Validate Entire Topology | Topology_ValidateFullExtentCommand | Topology | {C1D82094-EF76-4F04-B0DD-2CD257350115} esriEditorExt.ValidateFullExtentCommand | none | Topology_TopologyToolbar | Validates topology for the full extent |
| Command | Fix Topology Error | Topology_FixErrorTool | Topology | {C6D3F257-EE68-4D43-8FE2-005BD5537160} esriEditorExt.FixErrorTool | none | Topology_TopologyToolbar | Selects and fixes topology errors. |
| Command | Error Inspector | Topology_ErrorWindowCommand | Topology | {E9C1F049-CB39-4BB0-B726-3BCEF21A87C8} esriEditorExt.ErrorWindowCommand | none | Topology_TopologyToolbar | Shows and hides the error inspector dialog. |
| Toolbar | Tracking Analyst | Tracking Analyst Toolbar | none | {D53BF211-24FB-11D4-B34C-00104BA2ABCC} esriTrackingAnalystUI.TAToolBar | none | none | none |
| Menu | Tracking Analyst | Tracking Analyst Menubar | none | {08850889-5B9F-45D4-AC60-3400F7676CA9} esriTrackingAnalystUI.TAMenuBar | none | Tracking Analyst Toolbar | none |
| Command | Animation Tool | Tracking Analyst_Animation Tool | Tracking Analyst | {D53BF1F3-24FB-11D4-B34C-00104BA2ABCC} esriTrackingAnalystUI.AnimationWizard | none | Tracking Analyst Menubar | Open Animation Tool to create multimedia copy of active data frame |
| Menu | Data Clock | data clock menu name | none | {5CE06D1A-1BEC-11D6-B831-00010265ADC5} esriTrackingAnalystUI.TemporalChartMenu | none | Tracking Analyst Menubar | none |
| Command | Create Data Clock | TrackingAnalyst_CreateDataClock | Tracking Analyst | {2A9429C8-1A4E-11D6-B831-00010265ADC5} esriTrackingAnalystUI.CreateDataClockCommand | none | data clock menu name | Create a new data clock to symbolize event occurrences over time |
| Command | Manage | Tracking Analyst_&Manage... | Tracking Analyst | {BC3D9EF0-D307-11D5-B811-00010265ADC5} esriTrackingAnalystUI.TemporalDataClockTool | none | data clock menu name | Create a new data clock to symbolize event occurrences over time |
| Command | Settings | Tracking Analyst_Settings | Tracking Analyst | {10FA821D-ECC7-4330-B724-FBEAEF195B30} esriTrackingAnalystUI.TASettings | none | Tracking Analyst Menubar | Tracking Analyst Global Settings |
| Command | Add Temporal Data | TemporalEventWizard | Tracking Analyst | {D53BF1F2-24FB-11D4-B34C-00104BA2ABCC} esriTrackingAnalystUI.TemporalEventWizard | none | Tracking Analyst Toolbar | Add historic temporal data to active data frame |
| Command | Playback Manager | TrackingAnalyst_PlaybackManager | Tracking Analyst | {06107E62-D0A0-4C15-813D-4FCB325D0921} esriTrackingAnalystUI.PlaybackTool | none | Tracking Analyst Toolbar | Open Playback Manager to replay real-time and historic data |
| Command | Track Step Tool | Track Step Tool | Tracking Analyst | {054F6418-3269-4466-AA0D-82051D076D27} esriTrackingAnalystUI.StepTool | none | Tracking Analyst Toolbar | Step through selected tracks using the Arrow Keys |
| Toolbar | Utility Network Analyst | Network_UtilityNetworkToolbar | none | {7289436B-BE32-11D2-BABE-00C04FA33C20} esriEditorExt.UtilityNetworkToolBar | none | none | none |
| Command | Network Dropdown List | Untitled | Utility Network Analyst | {9EF71963-D71A-11D2-9F4C-00C04F6BDF0E} esriEditorExt.GeometricNetworksControl | none | Network_UtilityNetworkToolbar | Select network to analyze |
| Menu | Flow | Network Flow | none | {28278419-0193-11D3-9F7D-00C04F6BDF0E} esriEditorExt.GeometricNetworkMenu | none | Network_UtilityNetworkToolbar | none |
| Menu | Display Arrows For | FlowLayers_Menu | none | {7E80212D-FF49-11D2-9F7B-00C04F6BDF0E} esriEditorExt.FlowLayersMenu | none | Network Flow | none |
| Command | Display Arrows For | Query_FlowLayers | Disable Layers | {8D26742F-FF49-11D2-9F7B-00C04F6BDF0E} esriEditorExt.FlowLayersControl | none | FlowLayers_Menu | Select layers for which to display flow direction arrows |
| Command | Display Arrows | UtilityNetworkAnalysis_ShowNetworkFlow | Utility Network Analyst | {D5C26F1F-BE1F-11D2-BABE-00C04FA33C20} esriEditorExt.ShowFlowTool | none | Network Flow | Turn flow direction arrows on or off |
| Command | Properties | UtilityNetworkAnalysis_Options | Utility Network Analyst | {200F453D-0197-11D3-9F7D-00C04F6BDF0E} esriEditorExt.NetworkPropertiesCommand | none | Network Flow | Modify the settings for the flow direction arrows |
| Command | Set Flow Direction | UtilityNetworkAnalysis_FlowDirectionByDefault | Utility Network Analyst | {621113B9-0FCD-11D3-9F8E-00C04F6BDF0E} esriEditorExt.FlowDirectionByDefault | none | Network_UtilityNetworkToolbar | Set flow direction for the network |
| Menu | Analysis | UtilityNetworkMenu | none | {84FB30E1-C827-11D2-BAC0-00C04FA33C20} esriEditorExt.UtilityNetworkMenu | none | Network_UtilityNetworkToolbar | none |
| Menu | Disable Layers | DisableLayers_Menu | none | {8E8F278B-D36A-11D2-9F49-00C04F6BDF0E} esriEditorExt.DisableLayersMenu | none | UtilityNetworkMenu | none |
| Command | Disable Layers | Query_DisableLayers | Disable Layers | {BE9DD53F-D4B9-11D2-9F4A-00C04F6BDF0E} esriEditorExt.DisableLayersControl | none | DisableLayers_Menu | Select layers to exclude from trace tasks |
| Command | Clear Flags | UtilityNetworkAnalysis_DeleteBarriers | Utility Network Analyst | {48EE0DEF-BF70-11D2-BABE-00C04FA33C20} esriEditorExt.UtilityNetworkPullDown | 1 | UtilityNetworkMenu | Clears the flags from the current network |
| Command | Clear Barriers | UtilityNetworkAnalysis_DeleteBarriers | Utility Network Analyst | {48EE0DEF-BF70-11D2-BABE-00C04FA33C20} esriEditorExt.UtilityNetworkPullDown | 2 | UtilityNetworkMenu | Clears the barriers from the current network |
| Command | Clear Results | UtilityNetworkAnalysis_DeleteResults | Utility Network Analyst | {48EE0DEF-BF70-11D2-BABE-00C04FA33C20} esriEditorExt.UtilityNetworkPullDown | 3 | UtilityNetworkMenu | Clears the results from the current network |
| Command | Options | UtilityNetworkAnalysis_Options | Utility Network Analyst | {7E4A44A3-D7EA-11D2-9F4E-00C04F6BDF0E} esriEditorExt.AnalysisPropertiesCommand | none | UtilityNetworkMenu | Modify the settings for trace tasks |
| Command | Flag and Barrier Tools | FlagAndBarrierTools_Test | Utility Network Analyst | {C86085FD-D8D9-11D2-9F4F-00C04F6BDF0E} esriEditorExt.FlagAndBarrierToolsPalette | none | Network_UtilityNetworkToolbar | Add a junction flag to the network |
| Command | Trace Task Dropdown List | UtilityNetworkAnalysis_Tasks | Utility Network Analyst | {DE03EE81-BE26-11D2-BABE-00C04FA33C20} esriEditorExt.UtilityTasksControl | none | Network_UtilityNetworkToolbar | Select trace task |
| Command | Solve | UtilityNetworkAnalysis_TraceSolver | Utility Network Analyst | {D6CD856D-BF8F-11D2-BABE-00C04FA33C20} esriEditorExt.TraceSolver | none | Network_UtilityNetworkToolbar | Perform trace task |
| Toolbar | Versioning | Versioning_VersionToolbar | none | {8E8F4C7D-ACA7-11D2-9F19-00C04F6BC979} esriEditor.VersionToolBar | none | none | none |
| Command | Version Manager | Versioning_VersionManager | Versioning | {2818B7C1-E9D2-11D1-8490-0000F875B9C6} esriEditor.VersionManagerCommand | none | Versioning_VersionToolbar | Hides/shows the version management dialog |
| Command | Create New Version | Versioning_NewVersion | Versioning | {8E8F4C7F-ACA7-11D2-9F19-00C04F6BC979} esriEditor.NewVersionCommand | none | Versioning_VersionToolbar | Creates a new version |
| Command | Refresh | Versioning_Refresh | Versioning | {8E8F4C7E-ACA7-11D2-9F19-00C04F6BC979} esriEditor.RefreshVersionCommand | none | Versioning_VersionToolbar | Refreshes the database connection and redraws the map |
| Command | Change Version | Workspace_ChangeVersion | Versioning | {5ADB1DBC-DCBC-11D2-9F26-00C04F6BC979} esriArcMapUI.ChangeVersionCommand | none | Versioning_VersionToolbar | Changes the current version of the database |
| Command | Reconcile | Versioning_Reconcile | Versioning | {D90B1760-95FF-11D2-8526-0000F875B9C6} esriEditor.ReconcileCommand | none | Versioning_VersionToolbar | Reconciles this version against another version. |
| Command | Post | Versioning_Post | Versioning | {BA47F54C-B4B0-11D2-9F1A-00C04F6BC979} esriEditor.PostCommand | none | Versioning_VersionToolbar | Posts your edits to another version of the database |
| Command | Conflicts | Versioning_Conflicts | Versioning | {D90B1761-95FF-11D2-8526-0000F875B9C6} esriEditor.ConflictsCommand | none | Versioning_VersionToolbar | Shows the conflicts window. |