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:
| 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} esr |