ArcMap Commands


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:

TypeCaptionNameCommand CategoryGUID (CLSID / ProgID)Sub TypeParentDescription
ToolbarMain MenuMain Menunone{1E739F59-E45F-11D1-9496-080009EEBECB}
esriArcMapUI.MxMenuBar
nonenonenone
MenuFileFile_Menunone{56599DD3-E464-11D1-9496-080009EEBECB}
esriArcMapUI.MxFileMenu
noneMain Menunone
CommandNewFile_NewFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
1File_MenuCreate a new map
CommandOpenFile_OpenFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
2File_MenuOpen an existing map
CommandSaveFile_SaveFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
3File_MenuSave the current map
CommandSave AsFile_SaveAsFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
4File_MenuSave the current map with a new name
CommandSave A CopyFile_SaveCopyAsFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
12File_MenuSaves a copy of the current map document with the option of saving to a previous version.
CommandAdd DataFile_AddDataFile{E1F29C6B-4E6B-11D2-AE2C-080009EC732A}
esriArcMapUI.AddDataCommand
noneFile_MenuAdd new data to the map's active data frame
MenuAdd Data From GIS PortalAddInternetData_Menunone{5B43EFCE-8C6F-49FF-8B77-0C769AB4A5F0}
esriArcMapUI.AddInternetDataMenu
noneFile_Menunone
CommandGeography NetworkIMS_ManageInternetDataURLIMS{C454EBA4-2DFD-49C7-BF8F-B42F9240B050}
esriArcMapUI.AddInternetDataMenuItem
3AddInternetData_MenuAdd data from the Geography Network GIS portal
Command{ Add Data From GIS Portal }{ IMS_AddInternetDataMenu }none{6888A697-86CB-4AC1-BCBF-6D888B9085AA}
esriArcMapUI.AddInternetDataURLMenuItem
noneAddInternetData_Menunone
CommandAdd WebsiteIMS_NewInternetDataURLIMS{C454EBA4-2DFD-49C7-BF8F-B42F9240B050}
esriArcMapUI.AddInternetDataMenuItem
1AddInternetData_MenuAdd a GIS portal into this menu
CommandManage WebsitesIMS_ManageInternetDataURLIMS{C454EBA4-2DFD-49C7-BF8F-B42F9240B050}
esriArcMapUI.AddInternetDataMenuItem
2AddInternetData_MenuManage Metadata Explorer websites
CommandPage and Print SetupFile_PageSetupFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
5File_MenuSpecify page size and orientation
CommandPrint PreviewFile_PrintPreviewFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
6File_MenuPreview how the map will print out
CommandPrintFile_PrintFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
7File_MenuPrint the current map
CommandDocument PropertiesFile_PropertiesFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
8File_MenuDisplay the map properties
CommandImport from ArcView projectFile_AVImportFile{60672A17-DE7B-11D3-9FD4-00C04F6BC78E}
esriArcMapUI.AVImportCommand
noneFile_MenuImports selected documents from an ArcView 3.2 project
CommandExport MapFile_ExportFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
9File_MenuExport map to graphics file
Command{ Recent files }{ File_RecentFiles }none{BF4121B8-175C-11D2-8D23-080009EE4E51}
esriArcMapUI.MxRecentFiles
noneFile_Menunone
CommandExitFile_ExitFile{119591DB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxFileMenuItem
10File_MenuExit the application
MenuEditEdit_Menunone{119591BE-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxEditMenu
noneMain Menunone
CommandUndoEdit_UndoEdit{FBF8C3FB-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxEditMenuItem
1Edit_MenuUndo the last action
CommandRedoEdit_RedoEdit{FBF8C3FB-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxEditMenuItem
2Edit_MenuRedo the previously undone action
CommandCutEdit_CutEdit{A33D9406-7ED5-11D0-8D7C-0080C7A4557D}
esriArcMapUI.EditCutCommand
noneEdit_MenuCut the selected element(s)
CommandCopyEdit_CopyEdit{A33D9405-7ED5-11D0-8D7C-0080C7A4557D}
esriArcMapUI.EditCopyCommand
noneEdit_MenuCopy the selected element(s)
CommandPasteEdit_PasteEdit{A33D9407-7ED5-11D0-8D7C-0080C7A4557D}
esriArcMapUI.EditPasteCommand
noneEdit_MenuPaste the clipboard contents into your map
CommandPaste SpecialPageLayout_EditPasteSpecialEdit{D4416555-9920-11D2-AD03-0000F87808EE}
esriArcMapUI.EditPasteSpecialCommand
noneEdit_MenuPaste the clipboard contents using the format you specify
CommandDeleteEdit_ClearEdit{16CD71E5-98C3-11D1-873B-0000F8751720}
esriArcMapUI.EditClearCommand
noneEdit_MenuDelete the selected element(s)
CommandCopy Map To ClipboardPageLayout_EditCopyMapEdit{57610896-4F78-11D2-AAAB-000000000000}
esriArcMapUI.EditCopyMapCommand
noneEdit_MenuCopy the map to the clipboard
CommandFindControlToolsMapInquiry_FindMap Inquiry{CE9BB1E9-B2D4-4442-8A81-42478C81B256}
esriControls.ControlsMapFindCommand
noneEdit_MenuFinds features, places and addresses on the map
CommandGo To XYControlToolsMapNavigation_GoToMap Navigation{C397D829-522B-490F-8249-0219EA53CFBC}
esriControls.ControlsMapGoToCommand
noneEdit_MenuFind XY Locations in a map
CommandSelect All ElementsEdit_SelectAllEdit{161496AD-AC99-11D2-87F8-0000F8751720}
esriArcMapUI.EditSelectAllCommand
noneEdit_MenuSelects all text, graphics and other objects placed on the map
CommandUnselect All ElementsEdit_UnselectAllEdit{B3350335-1FAC-4B53-B689-A750502B0F55}
esriArcMapUI.EditUnselectAllCommand
noneEdit_MenuClear element selection
CommandZoom to Selected ElementsPageLayout_ZoomToSelectedGraphicsPage Layout{5D3E617C-13B6-4C7F-AB10-423DE02A2411}
esriArcMapUI.ZoomToSelectedGraphicsCommand
noneEdit_MenuZoom to selected elements
MenuViewView_Menunone{119591C1-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxViewMenu
noneMain Menunone
CommandData ViewView_GeographicView{65702489-A258-11D1-8740-0000F8751720}
esriArcMapUI.GeographicViewCommand
noneView_MenuSwitches to data view
CommandLayout ViewView_LayoutViewView{6570248A-A258-11D1-8740-0000F8751720}
esriArcMapUI.LayoutViewCommand
noneView_MenuSwitches to layout view
MenuZoom DataZoomData_Menunone{E370A1CF-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomDataMenu
noneView_Menunone
CommandFixed Zoom InPanZoom_ZoomInFixedPan/Zoom{0830FB33-7EE6-11D0-87EC-080009EC732A}
esriArcMapUI.ZoomInFixedCommand
noneZoomData_MenuZoom in on the center of your map
CommandFixed Zoom OutPanZoom_ZoomOutFixedPan/Zoom{0830FB34-7EE6-11D0-87EC-080009EC732A}
esriArcMapUI.ZoomOutFixedCommand
noneZoomData_MenuZoom out on the center of your map
CommandFull ExtentPanZoom_FullExtentPan/Zoom{0830FB35-7EE6-11D0-87EC-080009EC732A}
esriArcMapUI.FullExtentCommand
noneZoomData_MenuZooms to the full extent of the map
CommandGo Back To Previous ExtentPanZoom_ZoomToLastExtentBackPan/Zoom{3A372DD1-3ECB-11D2-A2A3-080009B6F22B}
esriArcMapUI.ZoomToLastExtentBackCommand
noneZoomData_MenuGo back to previous extent
CommandGo To Next ExtentPanZoom_ZoomToLastExtentForwardPan/Zoom{8FD414A2-403F-11D2-A2A9-080009B6F22B}
esriArcMapUI.ZoomToLastExtentForwardCommand
noneZoomData_MenuGo forward to next extent
CommandZoom To Selected FeaturesQuery_ZoomToSelectedSelection{AB073B49-DE5E-11D1-AA80-00C04FA37860}
esriArcMapUI.ZoomToSelectedCommand
noneZoomData_MenuZoom to the selected features in all layers
MenuZoom LayoutZoomLayout_Menunone{E370A1D0-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenu
noneView_Menunone
CommandZoom to Whole PageView_ZoomWholePageView{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
1ZoomLayout_MenuZoom to Whole Page
CommandZoom to 25%View_Zoom25View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
2ZoomLayout_MenuZoom to 25%
CommandZoom to 50%View_Zoom50View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
3ZoomLayout_MenuZoom to 50%
CommandZoom to 75%View_Zoom75View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
4ZoomLayout_MenuZoom to 75%
CommandZoom to 100%View_Zoom100View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
5ZoomLayout_MenuZoom to 100%
CommandZoom to 200%View_Zoom200View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
6ZoomLayout_MenuZoom to 200%
CommandZoom to 400%View_Zoom400View{E370A1D1-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxZoomLayoutMenuItem
7ZoomLayout_MenuZoom to 400%
MenuBookmarksBookMarks_Menunone{E370A1CD-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxBookmarksMenu
noneView_Menunone
CommandCreateView_InsertSpatialBookmarkView{E370A1CE-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxBookmarksMenuItem
1BookMarks_MenuCreate a Spatial Bookmark
CommandManageView_EditBookmarkView{E370A1CE-4CD6-11D2-AAA8-000000000000}
esriArcMapUI.MxBookmarksMenuItem
2BookMarks_MenuRename or delete spatial bookmarks
Command{ Bookmarks }{ Tools_BookMarkMenu }none{75872BE2-4277-11D2-AE1F-080009EC732A}
esriArcMapUI.MxBookmarkMenuItem
noneBookMarks_Menunone
MenuToolbarsnone{10BAA9F9-1C2F-11D2-94B6-080009EEBECB}
esriFramework.ToolbarContextMenu
noneView_Menunone
Command{ }{ }none{2AE639DD-1C2F-11D2-94B6-080009EEBECB}
esriFramework.ToolbarContextMenuItems
nonenone
CommandCustomizeUntitledTools{8807BD31-6947-11D2-8D4C-080009EE4E51}
esriFramework.CustomizeCommand
noneCustomize the user interface
CommandView SourceUntitlednone{1B2D63B1-12A9-11D2-AA21-000000000000}
esriFramework.CustContextMenuItems
9Displays the VBA source code for the selected control
CommandStatus BarView_StatusBarView{FBF8C40A-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxViewMenuItem
1View_MenuShow or hide the status bar
CommandOverflow AnnotationView_OverFlowLabelsView{FBF8C40A-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxViewMenuItem
2View_MenuDisplay Overflow Annotation Window
CommandScrollbarsPageLayout_HideShowScrollbarsPage Layout{92D490BA-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.HideShowScrollbarsCommand
noneView_MenuHide or show the scrollbars
CommandRulersPageLayout_HideShowRulersPage Layout{92D490B9-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.HideShowRulersCommand
noneView_MenuHide or show rulers in Layout view
CommandGuidesPageLayout_HideShowSnapGuidesPage Layout{92D490BB-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.HideShowSnapGuidesCommand
noneView_MenuHide or show guides in Layout view
CommandGridPageLayout_HideShowSnapGridPage Layout{92D490BD-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.HideShowSnapGridCommand
noneView_MenuHide or show grid in Layout view
CommandData Frame PropertiesView_PropertiesView{FBF8C40A-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxViewMenuItem
3View_MenuSet Data Frame properties
MenuInsertInsert_Menunone{119591C4-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxInsertMenu
noneMain Menunone
CommandData FramePageLayout_NewMapPage Layout{C22579D5-BC17-11D0-8667-0000F8751720}
esriArcMapUI.NewMapCommand
noneInsert_MenuCreate a new data frame
CommandTitlePageLayout_InsertTitlePage Layout{EB70D0B3-0FA4-11D3-9F82-00C04F6BC78E}
esriArcMapUI.InsertTitleCommand
noneInsert_MenuInsert a map title in Layout view
CommandTextPageLayout_InsertTextPage Layout{EB70D0B2-0FA4-11D3-9F82-00C04F6BC78E}
esriArcMapUI.InsertTextCommand
noneInsert_MenuInsert text
CommandNeatlinePageLayout_NeatlinePage Layout{F0877F6E-4B93-4544-95AD-5C4F021B171E}
esriArcMapUI.NeatlineCommand
noneInsert_MenuAdd a neatline to the layout
CommandLegendPageLayout_NewLegendPage Layout{99D21D79-B475-11D1-8753-0000F8751720}
esriArcMapUI.NewLegendCommand
noneInsert_MenuInsert a legend in Layout view
CommandNorth ArrowPageLayout_NewNorthArrowPage Layout{99D21D7A-B475-11D1-8753-0000F8751720}
esriArcMapUI.NewNorthArrowCommand
noneInsert_MenuInsert a north arrow in Layout view
CommandScale BarPageLayout_NewScaleBarPage Layout{99D21D77-B475-11D1-8753-0000F8751720}
esriArcMapUI.NewScaleBarCommand
noneInsert_MenuInsert a scale bar in Layout view
CommandScale TextPageLayout_NewScaleTextPage Layout{99D21D78-B475-11D1-8753-0000F8751720}
esriArcMapUI.NewScaleTextCommand
noneInsert_MenuInsert a text description of the scale in Layout view
CommandPicturePicturePage Layout{5F933B51-C053-11D2-9F22-00C04F6BC8DD}
esriArcMapUI.NewPictureCommand
noneInsert_MenuInsert a picture
CommandObjectInsert_ObjectInsert{FBF8C408-0480-11D2-8D21-080009EE4E51}
esriArcMapUI.MxInsertMenuItem
1Insert_MenuInsert a new embedded object
MenuSelectionSelection_Menunone{EB70D0AF-0FA4-11D3-9F82-00C04F6BC78E}
esriArcMapUI.MxSelectionMenu
noneMain Menunone
CommandSelect By AttributesQuery_AttributeSelectSelection{54EBEEE6-DC82-11D1-AA7F-00C04FA37860}
esriArcMapUI.AttributeSelectCommand
noneSelection_MenuSelects features by their attribute values
CommandSelect By LocationQuery_SelectByLayerSelection{82B9951B-DD63-11D1-AA7F-00C04FA37860}
esriArcMapUI.SelectByLayerCommand
noneSelection_MenuSelects features using the location of features in another layer
CommandSelect By GraphicsQuery_SelectByGraphicsSelection{57610895-4F78-11D2-AAAB-000000000000}
esriArcMapUI.SelectByGraphicsCommand
noneSelection_MenuSelect features that are intersected by the selected graphics
CommandZoom To Selected FeaturesQuery_ZoomToSelectedSelection{AB073B49-DE5E-11D1-AA80-00C04FA37860}
esriArcMapUI.ZoomToSelectedCommand
noneSelection_MenuZoom to the selected features in all layers
CommandPan To Selected FeaturesLayer_PanToSelectionLayer{BF64319A-9062-11D2-AE71-080009EC732A}
esriArcMapUI.FeatureLayerContextMenuItems
16Selection_MenuPans to the location of the selected feature(s)
CommandStatisticsQuery_SelectionStatisticsSelection{3E58D6D0-DF7A-11D1-ADD9-080009EC732A}
esriArcMapUI.SelectionStatisticsCommand
noneSelection_MenuDisplays statistics for the selected features
CommandSet Selectable LayersQuery_SelectableLayersSelection{06C532B2-051E-43C3-A3B7-4C9DE569373A}
esriArcMapUI.SelectableLayersCommand
noneSelection_MenuChoose which layers interactive selection will select features from
CommandClear Selected FeaturesQuery_ClearSelectionSelection{37C833F3-DBFD-11D1-AA7E-00C04FA37860}
esriArcMapUI.ClearSelectionCommand
noneSelection_MenuUnselect the currently selected features in all layers
MenuInteractive Selection MethodSelectionType_Menunone{8841A0D9-4F49-11D2-AE2D-080009EC732A}
esriArcMapUI.SelectionTypeMenu
noneSelection_Menunone
CommandCreate New SelectionQuery_SelectFeaturesSelection{8841A0DA-4F49-11D2-AE2D-080009EC732A}
esriArcMapUI.SelectionTypeMenuItem
1SelectionType_MenuCreate New Selection
CommandAdd to Current SelectionQuery_AddToCurrentSelectionSelection{8841A0DA-4F49-11D2-AE2D-080009EC732A}
esriArcMapUI.SelectionTypeMenuItem
2SelectionType_MenuAdd to Current Selection
CommandRemove From Current SelectionQuery_RemoveFromCurrentSelectionSelection{8841A0DA-4F49-11D2-AE2D-080009EC732A}
esriArcMapUI.SelectionTypeMenuItem
3SelectionType_MenuRemove from Current Selection
CommandSelect From Current SelectionQuery_SelectFromCurrentSelectionSelection{8841A0DA-4F49-11D2-AE2D-080009EC732A}
esriArcMapUI.SelectionTypeMenuItem
4SelectionType_MenuSelect from Current Selection
CommandOptionsQuery_SelectionOptionsSelection{EB70D0B0-0FA4-11D3-9F82-00C04F6BC78E}
esriArcMapUI.SelectionOptionsCommand
noneSelection_MenuChoose selection options such as highlight color
MenuToolsTools_Menunone{119591CB-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxToolsMenu
noneMain Menunone
CommandEditor ToolbarTools_EditingToolbarTools{E1F29C74-4E6B-11D2-AE2C-080009EC732A}
esriArcMapUI.EditingToolbarCommand
noneTools_MenuShow the Editor toolbar so you can edit the map's data
MenuGraphsDataGraphOptions_Menunone{4C6E6A2B-DD8A-11D3-A661-0008C7DF88DB}
esriArcMapUI.DataGraphOptionsMenu
noneTools_Menunone
CommandCreateDataGraph_CreateDataGraph{4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB}
esriArcMapUI.DataGraphOptionsMenuItem
1DataGraphOptions_MenuCreates a new Graph
CommandManageDataGraph_ManageDataGraph{4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB}
esriArcMapUI.DataGraphOptionsMenuItem
2DataGraphOptions_MenuManage Graphs
CommandLoadDataGraph_LoadDataGraph{4C6E6A2C-DD8A-11D3-A661-0008C7DF88DB}
esriArcMapUI.DataGraphOptionsMenuItem
3DataGraphOptions_MenuLoad Graph
Command{ Graphs }{ Tools_DataGraphMenu }none{809868AF-DF2A-11D3-A664-0008C7DF88DB}
esriArcMapUI.DataGraphMenuItem
noneDataGraphOptions_Menunone
MenuReportsReports_Menunone{C545B528-4216-4A5A-B7E5-4FC17DA4C3C9}
esriArcMapUI.ReportsMenu
noneTools_Menunone
CommandCreate ReportReportObject_CreateReportReport Object{0A6FBDFB-AB21-11D2-926E-080009F90551}
esriReportWriter.clsReportCommand
noneReports_MenuCreate a Report
CommandCrystal Report WizardReportObject_CrystalReportWizardReport Object{2D6D4F87-1789-4690-A6FF-88243038404A}
CRWizard.ReportCommand
noneReports_MenuCreate a report using Crystal Reports
MenuGeocodingGeocode_Menunone{0EE3DF3A-8361-4435-9BD8-A3249563FC27}
esriLocationUI.MxGeocodeMenu
noneTools_Menunone
CommandGeocode AddressesGeocodeAddresses_CommandGeocoding{5495175F-1C83-11D4-9F7D-00C04F8ED1C4}
esriLocationUI.MxGeocodeAddressesCommand
noneGeocode_MenuGeocode a table of addresses
MenuReview/Rematch AddressesMx_RematchAddressesMenunone{DADF1866-415E-49CD-B80F-B14FBFD2E5C8}
esriLocationUI.MxRematchAddressesMenu
noneGeocode_Menunone
Command{ Review/Rematch Addresses }{ Mx_RematchAddressMenuItems }none{CE33CDBC-F3DF-47AB-A125-2FE312CD94A6}
esriLocationUI.MxRematchAddressesMenuItems
noneMx_RematchAddressesMenunone
CommandAddress Locator ManagerLocatorManager_CommandGeocoding{B5D3AB84-EED1-11D3-9F76-00C04F8ED1C4}
esriLocationUI.MxLocatorManagerCommand
noneGeocode_MenuBring up the Address Locator Manager dialog
CommandAdd XY DataTools_AddXYDataTools{55425B75-2CE4-4909-B40A-CFE50FAD1896}
esriLocationUI.AddXYDataCommand
noneTools_MenuAdds a new map layer based on XY events from a table
CommandAdd Route EventsLr_AddRouteEventsLinear Referencing{6E6364B6-9ED5-4C0C-BEF1-F489F20597BE}
esriLocationUI.AddRouteEventsCommand
noneTools_MenuAdds a new map layer based on route events from a table
CommandArcCatalogTools_CatalogTools{E1F29C71-4E6B-11D2-AE2C-080009EC732A}
esriArcMapUI.CatalogCommand
noneTools_MenuLaunch ArcCatalog
MenuArcWeb ServicesControlToolsGeneric_ArcWebMenunone{55CD8BBF-5920-44D4-B24E-24B9050ABB64}
esriControls.ControlsArcWebMenu
noneTools_Menunone
CommandSign in to ArcWeb ServicesControlToolsGeneric_ConnectToArcWebArcWeb Services{CD29D155-7D2C-4F80-9EF3-3F25F18B889F}
esriControls.ControlsArcWebConnectionCommand
noneControlToolsGeneric_ArcWebMenuSign in to ArcWeb Services using your user name and password
CommandFind RouteControlToolsGeneric__FindRouteArcWeb Services{42B27C5B-DBFA-4205-BBF9-6514C869251A}
esriControls.ControlsRouteCommand
noneControlToolsGeneric_ArcWebMenuFind routes between locations you specify and generate driving directions
CommandFind Nearby PlacesControlToolsGeneric_NearbyPlacesArcWeb Services{5BFAA184-6F51-49E3-BF07-B73E918142FF}
esriControls.ControlsNearbyPlacesCommand
noneControlToolsGeneric_ArcWebMenuFind places located near a origin on the map
CommandMy ArcWeb Services AccountControlToolsGeneric_ArcWebMyAccountCommandArcWeb Services{FABC7D04-1462-47A8-90B6-C00F5D8F1D8F}
esriControls.ControlsArcWebMyAccountCommand
noneControlToolsGeneric_ArcWebMenuManage your ArcWeb Service's Account
CommandAbout ArcWeb ServicesControlToolsGeneric_ArcWebAboutCommandArcWeb Services{9A969388-E4F8-44FF-B0B8-EA805EDAB54F}
esriControls.ControlsArcWebAboutCommand
noneControlToolsGeneric_ArcWebMenuAbout ArcWeb Services
CommandMy PlacesControlToolsGeneric_MyPlacesGeneric{138C5B5B-439C-4DA0-8EF8-78B61F94A70A}
esriControls.ControlsMyPlacesCommand
noneTools_MenuCreate and work with a list of your frequently used addresses, locations and features
MenuMacrosMacros_Menunone{119591D5-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxMacrosMenu
noneTools_Menunone
CommandMacrosTools_MacrosTools{12FA7CAF-07AA-11D2-8D22-080009EE4E51}
esriArcMapUI.MxMacrosMenuItem
1Macros_MenuCreate, edit or execute a VBA macro
CommandVisual Basic EditorTools_VBIDETools{12FA7CAF-07AA-11D2-8D22-080009EE4E51}
esriArcMapUI.MxMacrosMenuItem
2Macros_MenuDisplay the Visual Basic Editor
CommandCustomizeUntitledTools{8807BD31-6947-11D2-8D4C-080009EE4E51}
esriFramework.CustomizeCommand
noneTools_MenuCustomize the user interface
CommandExtensionsExtensionsCommandTools{F647BE13-ECCF-4D32-8B04-72CB28CEAE7C}
esriFramework.ExtensionsCommand
noneTools_MenuManipulates the extensions
MenuStylesStyleOptions_Menunone{10F9032D-EBDE-11D2-AB0D-000000000000}
esriArcMapUI.StyleOptionsMenu
noneTools_Menunone
CommandStyle ReferencesTools_StyleReferencesTools{10F9032E-EBDE-11D2-AB0D-000000000000}
esriArcMapUI.StyleOptionsMenuItem
1StyleOptions_MenuChoose which styles will be available for use in this map
CommandStyle ManagerTools_StyleManagerTools{10F9032E-EBDE-11D2-AB0D-000000000000}
esriArcMapUI.StyleOptionsMenuItem
2StyleOptions_MenuBrowse and manage the contents of styles
CommandExport Map StylesTools_ExportMapStylesTools{10F9032E-EBDE-11D2-AB0D-000000000000}
esriArcMapUI.StyleOptionsMenuItem
3StyleOptions_MenuExports the symbols and colors of the current map to a style
CommandOptionsTools_OptionsTools{D74B2F25-AC90-11D2-87F8-0000F8751720}
esriArcMapUI.OptionsCommand
noneTools_MenuModify ArcMap settings
MenuWindowWindow_Menunone{119591CF-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxWindowMenu
noneMain Menunone
Command{ New }{ Window_NewWindowItems }none{A01B0EA3-0A06-11D2-8D22-080009EE4E51}
esriArcMapUI.MxNewWindowMenuItem
noneWindow_Menunone
CommandTable Of ContentsView_ContentsView{E1F29C6D-4E6B-11D2-AE2C-080009EC732A}
esriArcMapUI.ShowTOCCommand
noneWindow_MenuDisplay the Table Of Contents window listing the map's layers
CommandArcToolboxArcToolbox_ShowToolboxArcToolbox{85980C3A-652A-47ED-8CD2-1B99DD060AAB}
esriGeoprocessingUI.ArcToolboxCmd
noneWindow_MenuShow/Hide the ArcToolbox Window
CommandCommand LineArcToolbox_ShowCommandLineArcToolbox{1A7E7146-BDFB-4755-93DE-100171382BFF}
esriGeoprocessingUI.GPCommandLineCmd
noneWindow_MenuShow/Hide the Command Line Window
Command{ Application Windows }{ Window_AppWindowsItems }none{8B95B33A-E92B-11D2-9F58-00C04F6BC78E}
esriArcMapUI.AppWindowsMenuItem
noneWindow_Menunone
MenuHelpHelp_Menunone{119591D1-0255-11D2-8D20-080009EE4E51}
esriArcMapUI.MxHelpMenu
noneMain Menunone
CommandArcGIS Desktop HelpHelp_ContentsHelp{DFD4A705-B83F-45FB-820B-2C633AF6F325}
esriFramework.HelpContentsCommand
noneHelp_MenuDisplay the help topics for ArcGIS
CommandArcGIS Desktop Help OnlineHelp_ArcGISDesktopHelpOnlineHelp{4B6B8DA1-19B0-4289-AF9D-16FB23647D5D}
esriFramework.HelpMenuItem
6Help_MenuGo to the ArcGIS Desktop Help web page
CommandWhat's This?Help_ContextHelpHelp{81972F0D-388A-11D3-9F57-00C04F6BC61A}
esriFramework.HelpTool
noneHelp_MenuGet help on the menu command or tool you select
CommandGIS DictionaryHelp_GIS_DictionaryHelp{4B6B8DA1-19B0-4289-AF9D-16FB23647D5D}
esriFramework.HelpMenuItem
1Help_MenuGo to the GIS Dictionary web page
CommandESRI Support CenterHelp_Support_CenterHelp{4B6B8DA1-19B0-4289-AF9D-16FB23647D5D}
esriFramework.HelpMenuItem
2Help_MenuGo to the ESRI Support Center web page
CommandESRI TrainingHelp_Training_InstructorLedHelp{4B6B8DA1-19B0-4289-AF9D-16FB23647D5D}
esriFramework.HelpMenuItem
4Help_MenuGo to the ESRI Training web page
CommandESRI Developer NetworkHelp_ArcGIS_DeveloperHelp{4B6B8DA1-19B0-4289-AF9D-16FB23647D5D}
esriFramework.HelpMenuItem
3Help_MenuGo to the ESRI Developer Network web page
CommandAbout ArcMapHelp_About_ArcMapHelp{7E4CF9FA-6FDA-441C-B91D-76CFED5E1BF7}
esriArcMapUI.MxHelpAbout
noneHelp_MenuGet information about this application
Toolbar3D Analyst3DAnalyst_Toolbarnone{3FA6313B-7EB4-11D4-A10D-00508BD60CB9}
esri3DAnalystUI.DDDAnalystToolBar
nonenonenone
Menu3D Analyst3DAnalyst_Menunone{DD4BB1D3-7F5C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystMenu
none3DAnalyst_Toolbarnone
MenuCreate/Modify TIN3DAnalyst_Create_Menunone{28BADA19-8DAC-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystCreateMenu
none3DAnalyst_Menunone
CommandCreate TIN From Features3DAnalyst_TinBuilder3D Analyst{2AD7EAEB-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystTinBuilderCommand
none3DAnalyst_Create_MenuCreate TIN by inputing features
CommandAdd Features to TIN3DAnalyst_AddToTin3D Analyst{2AD7EAEC-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystAddToTinCommand
none3DAnalyst_Create_MenuAdd features to TIN
MenuInterpolate to Raster3DAnalyst_Interpolate_Menunone{28BADA18-8DAC-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystInterpolateMenu
none3DAnalyst_Menunone
CommandInverse Distance WeightedAnalysis_IDWSurface{D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SAInterpolateMenuItem
13DAnalyst_Interpolate_MenuInterpolate a surface from points using an inverse distance weighted technique
CommandSplineAnalysis_SplineSurface{D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SAInterpolateMenuItem
23DAnalyst_Interpolate_MenuInterpolate a surface from points using a minimum curvature spline technique
CommandKrigingAnalysis_KrigingSurface{D5FB57C6-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SAInterpolateMenuItem
33DAnalyst_Interpolate_MenuInterpolate a surface from points using Kriging
CommandNatural Neighbors3DAnalyst_NaturalNeighbor3D Analyst{2AD7EAED-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystNaturalNeighborCommand
none3DAnalyst_Interpolate_MenuCreate surface from a natural neighbor interpolation
MenuSurface Analysis3DAnalyst_Surface_Menunone{28BADA15-8DAC-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystSurfaceMenu
none3DAnalyst_Menunone
CommandContourAnalysis_ContourSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
13DAnalyst_Surface_MenuCreates contours or isolines from a surface
CommandSlopeAnalysis_SlopeSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
23DAnalyst_Surface_MenuDerives slope from a surface
CommandAspectAnalysis_AspectSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
33DAnalyst_Surface_MenuDerives aspect from a surface
CommandHillshadeAnalysis_HillShadeSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
43DAnalyst_Surface_MenuComputes hillshade values for a surface
CommandViewshedAnalysis_ViewshedSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
53DAnalyst_Surface_MenuDetermines the surface locations visible to a set of input points
CommandCut/FillAnalysis_CutFillSurface{D5FB57C8-ACDB-11D2-9F3A-00C04F8ED1D7}
esriSpatialAnalystUI.SASurfaceMenuItem
63DAnalyst_Surface_MenuComputes the cut and fill volume and area of two surfaces
CommandArea and Volume3DAnalyst_AreaVolume3D Analyst{2AD7EAEE-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystAreaVolumeCommand
none3DAnalyst_Surface_MenuCalculates area and volume above or below a reference plane.
CommandReclassifyAnalysis_ReclassSurface{448796F6-2452-11D3-9F48-00C04F8ED1D7}
esriSpatialAnalystUI.SAReclassMenuItem
13DAnalyst_MenuReclassifies the values in a raster
MenuConvert3DAnalyst_Conversion_Menunone{28BADA16-8DAC-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystConversionMenu
none3DAnalyst_Menunone
CommandFeatures to 3D3DAnalyst_FeaturesTo3D3D Analyst{2AD7EAEF-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystFeaturesTo3DCommand
none3DAnalyst_Conversion_MenuConverts features into 3D
CommandRaster to FeaturesConversion_ToFeatureClassSurface{B9857142-3A19-11D3-9F4C-00C04F8ED1D7}
esriSpatialAnalystUI.SAConversionMenuItem
23DAnalyst_Conversion_MenuConverts a raster to features (points, lines, polygons)
CommandRaster to TIN3DAnalyst_RasterToTin3D Analyst{2AD7EAF0-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystRasterToTinCommand
none3DAnalyst_Conversion_MenuConverts a raster to a TIN
CommandTIN to Raster3DAnalyst_TinToRaster3D Analyst{2AD7EAF1-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystTinToRasterCommand
none3DAnalyst_Conversion_MenuConverts a TIN to a raster
CommandTIN to Features3DAnalyst_TinToFeatures3D Analyst{2AD7EAF2-98A5-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystTinToFeaturesCommand
none3DAnalyst_Conversion_MenuConverts a TIN to features
CommandOptionsAnalysis_SettingsSurface{8AC2F519-ED49-11D2-9F40-00C04F8ED1D7}
esriSpatialAnalystUI.RasterSettingsItem
none3DAnalyst_MenuDisplays a dialog box to edit the analysis properties
Command3D Analyst Layer List Control3DAnalyst_LayerListControl3D Analyst{2D73B144-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystLayerListControl
none3DAnalyst_Toolbar3D Analyst Layer List Control
CommandContour Tool3DAnalyst_Contour3D Analyst{28BADA1A-8DAC-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystContourTool
none3DAnalyst_ToolbarGenerates the contour that passes through a query point
CommandSteepest Path Tool3DAnalyst_SteepPath3D Analyst{2D73B141-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystSteepPathTool
none3DAnalyst_ToolbarGenerates the steepest path down from a point
CommandLine of Sight Tool3DAnalyst_LineofSight3D Analyst{2D73B145-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystLineofSightTool
none3DAnalyst_ToolbarGenerates a line of sight between observer and target points
CommandInterpolate Point Tool3DAnalyst_InterpolatePoint3D Analyst{2D73B146-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystInterpolatePointTool
none3DAnalyst_ToolbarInterpolates a 3D point from the selected surface
CommandInterpolate Line Tool3DAnalyst_InterpolateLine3D Analyst{2D73B147-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystInterpolateLineTool
none3DAnalyst_ToolbarCreates a 3D line by interpolating heights from the selected surface
CommandInterpolate Polygon Tool3DAnalyst_InterpolatePolygon3D Analyst{2D73B148-8F1C-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystInterpolatePolygonTool
none3DAnalyst_ToolbarCreates a 3D polygon (boundary) by interpolating heights from the selected surface
CommandProfile Graph Tool3DAnalyst_ProfileGraph3D Analyst{E765E905-9310-11D4-A10F-00508BD60CB9}
esri3DAnalystUI.DDDAnalystProfileGraphCommand
none3DAnalyst_ToolbarMake a profile graph of the selected 3d polyline.
CommandArcScene3DView_Scene3D View{BD98B4B3-DA9C-11D3-9F71-00C04F6BC619}
esri3DAnalystUI.SceneCommand
none3DAnalyst_ToolbarLaunch ArcScene
CommandArcGlobeGlobeView_GlobeGlobe View{EAC009E5-88A1-4A7C-B4A5-6D8A3D426200}
esriGlobeCoreUI.ArcGlobeCommand
none3DAnalyst_ToolbarLaunch ArcGlobe
ToolbarAdvanced EditingAdvancedEditingToolbarnone{98B0451D-2D7F-4893-9832-88C9D87C7026}
esriEditor.AdvancedEditingToolbar
nonenonenone
CommandCopy Features ToolEditor_CopyFeaturesToolAdvanced Edit Tools{CBD6B94D-653A-4C4E-9B01-218C1F782DE1}
esriEditor.CopyFeaturesTool
noneAdvancedEditingToolbarDrag a box to transform the selected features to fit into the area.
CommandFilletEditor_FilletToolAdvanced Edit Tools{D84AF5AA-1E86-441A-BEC3-A300A0484E71}
esriEditor.FilletTool
noneAdvancedEditingToolbarThe Fillet Tool allows you to place an arc tangent to two segments.
CommandExtendEditor_ExtendToolAdvanced Edit Tools{2D2B60F6-60C8-4AD6-8C38-1DD3E1A7F45C}
esriEditor.ExtendTool
noneAdvancedEditingToolbarExtends a line feature to meet the selected feature.
CommandTrimEditor_TrimToolAdvanced Edit Tools{94129272-F504-4405-8243-E4148410AF7C}
esriEditor.TrimTool
noneAdvancedEditingToolbarTrims a line feature that is cut by a selected feature.
CommandLine IntersectionEditor_LineIntersectionToolAdvanced Edit Tools{A1493DF8-E08D-44BC-A6FF-07C8619683AE}
esriEditor.LineIntersectionTool
noneAdvancedEditingToolbarIntersect features at either explicit or implied intersections.
CommandExplode Multi-part FeatureEditor_ExplodeCommandAdvanced Edit Tools{D48CAA0D-2661-4303-A2DA-99C1C5D5FB94}
esriEditor.ExplodeCommand
noneAdvancedEditingToolbarExplodes a multi-part feature into separate features
CommandGeneralizeEditor_GeneralizeCommandAdvanced Edit Tools{E820DFD0-02F4-4FF2-B8A3-4BDCD0D2BD64}
esriEditor.GeneralizeCommand
noneAdvancedEditingToolbarGeneralizes the selected line and polygon features
CommandSmoothEditor_SmoothCommandAdvanced Edit Tools{6185F30D-1B9A-470D-A52F-E37482D677FB}
esriEditor.SmoothCommand
noneAdvancedEditingToolbarSmoothes the selected line and polygon features
CommandRectangleEditor_RectangleToolAdvanced Edit Tools{6F0ED2CC-C099-4895-BD7E-BEEC2F78ADBF}
esriEditor.RectangleTool
noneAdvancedEditingToolbarCreates a rectangle.
CommandCircleEditor_CircleToolAdvanced Edit Tools{09C6F589-A3CE-48AB-81BC-46965C58F264}
esriEditor.CircleTool
noneAdvancedEditingToolbarCreates a circle.
ToolbarAnimationAnimation_ToolBarnone{9A00FF78-85FA-47DA-A63B-ABEC2268627F}
esriAnimationUI.AnimationToolBar
nonenonenone
MenuAnimationAnimation_Menunone{9D800203-79C0-4AA5-A5AB-50A42D26816E}
esriAnimationUI.AnimationMenu
noneAnimation_ToolBarnone
CommandClear AnimationAnimation_DeleteAnimation{57BC2C2D-5FE4-4DDF-8518-7E24A41C46F6}
esriAnimationUI.AnimationDeleteCommand
noneAnimation_MenuClear the animation tracks
CommandCreate KeyframeAnimation_CreateKeyframeAnimation{950CC4B4-2865-4477-BC90-B47BEC787B1E}
esriAnimationUI.AnimationCreateKeyframeCommand
noneAnimation_MenuCreate a new animation keyframe
CommandCreate Group AnimationAnimation_LayerGroupAnimation{773AB9A8-41D1-48C2-9334-C6610D658696}
esriAnimationUI.AnimationLayerGroupCommand
noneAnimation_MenuCreate a group animation from selected layers
CommandCreate Flyby from PathAnimation_CreateFromPathAnimation{7C5325EC-B37F-4E7C-B9A3-740CF8A75F8A}
esriAnimationUI.AnimationFlyFromPathCommand
noneAnimation_MenuCreate a view animation track from a selected path
CommandLoad Animation FileAnimation_OpenAnimation{70E7F641-1589-4D13-9FC2-C341FA8FF4C0}
esriAnimationUI.AnimationOpenFileCommand
noneAnimation_MenuLoad an animation file into the scene
CommandSave Animation FileAnimation_SaveAnimation{C1264170-89B1-48B2-B3AD-D7CF65E23D62}
esriAnimationUI.AnimationSaveFileCommand
noneAnimation_MenuSave the scene animation to a file
CommandExport to VideoAnimation_ExportAnimationAnimation{3B30EABC-B9A8-453C-9D43-E980C726196A}
esriAnimationUI.AnimationExportCommand
noneAnimation_MenuExport the scene animation to a video file
CommandAnimation ManagerAnimation_ManageAnimation{CB9F62CD-1DCC-4AAC-BCB2-57FCCB7D94CB}
esriAnimationUI.AnimationManagerCommand
noneAnimation_MenuOpen the animation manager dialog
CommandCapture ViewAnimation_CaptureViewAnimation{4FCB51A6-22E2-4D1D-95C6-DC49BB27651C}
esriAnimationUI.AnimationCaptureViewCommand
noneAnimation_ToolBarCapture the current extent to an animation
CommandAnimation ControlsAnimation_ControlsAnimation{4DBEE091-195D-4915-9221-062AE949AAA7}
esriAnimationUI.AnimationControlsCommand
noneAnimation_ToolBarOpen animation playing and recording controls
ToolbarAnnotationAnnotationToolbarnone{4383EF2D-9A23-49FC-ACB9-12BB661F3B67}
esriEditor.AnnotationToolbar
nonenonenone
CommandEdit Annotation ToolEditor_AnnoEditToolAdvanced Edit Tools{3B883F4A-D150-4BD6-900B-FD43C8ABF5C4}
esriEditor.AnnoEditTool
noneAnnotationToolbarEdits annotation features
CommandConstruct Horizontal AnnotationHorizontal_Annotation_CommandAdvanced Edit Tools{5CD2E6E9-2D36-454F-A176-94DA23104641}
esriEditor.HorizontalAnnotationCommand
noneAnnotationToolbarSets up the editor to construct horizontal annotation.
CommandConstruct Straight AnnotationStraight_Annotation_CommandAdvanced Edit Tools{C1707859-3435-453D-ACEB-F86C5FA3E858}
esriEditor.StraightAnnotationCommand
noneAnnotationToolbarSets up the editor to construct straight annotation.
CommandConstruct Annotation With A Leader LineLeaderLine_Annotation_CommandAdvanced Edit Tools{D7FA82CD-0933-4AAE-AC15-0C1C0B4A609C}
esriEditor.LeaderLineAnnotationCommand
noneAnnotationToolbarSets up the editor to construct annotation with a leader line.
CommandAnnotation ConstructorsAnnotation ConstructorsAdvanced Edit Tools{FA9FA291-B496-4742-A305-45EFA7E222B6}
esriEditor.AnnotationConstructorControl
noneAnnotationToolbarSelect the construction method used to create new annotation.
CommandAnnotation Constructor TextAnnotation TextAdvanced Edit Tools{C7D5DB14-1A2F-44CD-B11C-15EB83EBFD28}
esriEditor.AnnotationTextControl
noneAnnotationToolbarEnter the text used to create the new annotation.
CommandAnnotation SymbolsAnnotation SymbolsAdvanced Edit Tools{51E93830-581C-43EF-B28F-AEB84485B59D}
esriEditor.AnnotationSymbolControl
noneAnnotationToolbarSelects the annotation symbol used for new annotation features.
CommandUnplaced Annotation WindowUnplacedAnnoWindowCommandAdvanced Edit Tools{40965749-B024-41E4-895C-4B3872B7356E}
esriEditor.UnplacedAnnoWindowCommand
noneAnnotationToolbarShow or hide the unplaced annotation window
ToolbarArcPadArcPadTrans_TransToolBarnone{C377D597-CE59-4534-8FD4-AD01D6C17154}
esriEditorExt.APTransToolbar
nonenonenone
CommandGet Data For ArcPadArcPadCheckinCheckout_CheckoutArcPad{0B955860-A3AD-466B-9518-428762583A03}
esriEditorExt.APCheckoutCommand
noneArcPadTrans_TransToolBarCopies data for use in ArcPad. Also checks out database layers for editing.
CommandCheck In Edits From ArcPadArcPadCheckinExport_CheckinArcPad{5C963B87-BEBA-47BB-90C5-62470FD8EB7F}
esriEditorExt.APCheckinCommand
noneArcPadTrans_TransToolBarChecks in edits made to data in ArcPad.
CommandUndo Check Out For Editing.ArcPadUndoCheckoutExport_UndoCheckoutArcPad{6B9E8F2E-E158-4987-BDFA-907D44128E71}
esriEditorExt.APUndoCheckoutCommand
noneArcPadTrans_TransToolBarUndo check out of data checked out for editing in ArcPad.
ToolbarArcScanArcScan_VectorizationToolBarnone{AE1120FB-0694-49EE-8241-B8B088EB679F}
esriArcScan.VectorizationToolBar
nonenonenone
CommandArcScan Raster LayerArcScan_TargetLayerControlArcScan{81112F1C-62EC-44CB-BAEC-F3F125D58197}
esriArcScan.TargetLayerControl
noneArcScan_VectorizationToolBarThe raster layer that will be used for vectorization, snapping and cleanup operations.
CommandRaster Snapping OptionsArcScan_Snapping_OptionsArcScan{3013D403-B1E1-4549-88E8-317800632796}
esriArcScan.RasterSnappingOptionsCommand
noneArcScan_VectorizationToolBarOpens the raster snapping options dialog.
MenuVectorization ArcScan_VectorizationMenunone{B2335572-8C05-4C59-8C53-A0D61E1FD94F}
esriArcScan.VectorizationMenu
noneArcScan_VectorizationToolBarnone
CommandVectorization SettingsArcScan_OptionsDialogCommandArcScan{59681BD4-FE13-44D4-8F1E-DCE331F481A3}
esriArcScan.VectorizationSettingsDialogCommand
noneArcScan_VectorizationMenuShows or hides the vectorization settings modeless dialog.
CommandShow PreviewArcScan_ShowPreviewArcScan{CB62CB4C-7311-4082-BE22-722C96A0CDD1}
esriArcScan.VectorizationPreviewCommand
noneArcScan_VectorizationMenuShow preview of the vectorization result for the current extent.
CommandGenerate FeaturesArcScan_VectorizeArcScan{B839739F-451F-4660-A608-96AAF0B708BA}
esriArcScan.VectorizeCommand
noneArcScan_VectorizationMenuCreate features from the raster.
CommandOptionsArcScan_OptionsArcScan{8B181677-4A96-40F3-B243-D147BF79DCED}
esriArcScan.VectorizationOptionsCommand
noneArcScan_VectorizationMenuOpens the vectorization options dialog.
CommandGenerate Features Inside AreaArcScan_VectorizeAreaArcScan{F4CDAED0-63E7-4E49-9308-46F043B4529B}
esriArcScan.VectorizeAreaTool
noneArcScan_VectorizationToolBarVectorizes features inside a polygonal area.
CommandVectorization TraceArcScan_TraceArcScan{AF5A55F5-F5BA-4CC6-901A-059DA7E2F2F3}
esriArcScan.RasterTraceTool
noneArcScan_VectorizationToolBarTrace and vectorize raster linear features.
CommandVectorization Trace Between PointsArcScan_TraceArcScan{23B0A943-F01D-40D7-B5F4-79ADEF23AFEE}
esriArcScan.RasterTraceTool2
noneArcScan_VectorizationToolBarTrace and vectorize raster linear features.
CommandShape RecognitionArcScan_ShapeRecognitionArcScan{ACDA6C39-738A-4AEB-818E-BE1A5E55685D}
esriArcScan.RasterShapeRecognitionTool
noneArcScan_VectorizationToolBarVectorize square, rectangle, circle and elliptical shapes.
MenuRaster Cleanup ArcScan_RasterCleanupMenunone{BEC0D42D-3690-4372-845F-A620398979E6}
esriArcScan.RasterCleanupMenu
noneArcScan_VectorizationToolBarnone
CommandStart CleanupArcScan_StartCleanupArcScan{304D5758-8AAC-4053-912F-1BA6249EF8CF}
esriArcScan.StartCleanupCommand
noneArcScan_RasterCleanupMenuStarts Raster Cleanup Session
CommandStop CleanupArcScan_StopCleanupArcScan{CC8C4E6F-29AC-4527-B5DE-62E302CE429B}
esriArcScan.StopCleanupCommand
noneArcScan_RasterCleanupMenuStops Raster Cleanup Session
CommandRaster Painting ToolbarArcScan_CleanupToolbarArcScan{8DBF6146-9057-40EA-82D7-58587933E0D9}
esriArcScan.RasterCleanupToolbarCommand
noneArcScan_RasterCleanupMenuDisplays the raster painting toolbar
CommandErase Selected CellsArcScan_EraseSelectionCommandArcScan{B37F474D-C4A4-4102-A798-E8BF61DB353B}
esriArcScan.VectorizationEraseSelectionCommand
noneArcScan_RasterCleanupMenuErase selection with the background color.
CommandFill Selected CellsArcScan_FillSelectionCommandArcScan{84CD46C4-6AF8-43F2-BAAF-0CD9B3C9DA6A}
esriArcScan.VectorizationFillSelectionCommand
noneArcScan_RasterCleanupMenuFill selection with the foreground color.
CommandErosionArcScan_MorphologicalCommandArcScan{14AFF506-E6AF-4868-ABA4-1E4BAD14B024}
esriArcScan.VectorizationMorphologicalErosionCommand
noneArcScan_RasterCleanupMenuErode or thin the foreground cells by a number of pixels.
CommandDilationArcScan_MorphologicalCommandArcScan{18C9C9EB-FBAA-4D52-9252-837FF784196D}
esriArcScan.VectorizationMorphologicalDilationCommand
noneArcScan_RasterCleanupMenuDilate or grow the foreground cells by a number of pixels.
CommandOpeningArcScan_MorphologicalCommandArcScan{1A1D4B7E-FD01-4703-B4E0-BB711338BCE6}
esriArcScan.VectorizationMorphologicalOpeningCommand
noneArcScan_RasterCleanupMenuErode then Dilate the foreground cells by a number of pixels.
CommandClosingArcScan_MorphologicalCommandArcScan{1B37AE4C-6580-43A4-AC63-4960E0F2377E}
esriArcScan.VectorizationMorphologicalClosingCommand
noneArcScan_RasterCleanupMenuDilate then Erode the foreground cells by a number of pixels.
CommandSaveArcScan_SaveCleanupArcScan{413DCCA0-7619-4BAD-86D8-4FC3A0A31E18}
esriArcScan.SaveCleanupCommand
noneArcScan_RasterCleanupMenuSaves any pending raster cleanup edits
CommandSave AsArcScan_SaveCleanupAsArcScan{479E754E-2E61-4EA8-859D-6176D7B4EA02}
esriArcScan.SaveCleanupAsCommand
noneArcScan_RasterCleanupMenuSaves raster with a new name
MenuCell Selection ArcScan_CellSelectionMenunone{64525DC9-F6D3-48EA-98C4-F331033EC5E8}
esriArcScan.VectorizationCellSelectionMenu
noneArcScan_VectorizationToolBarnone
CommandSelect Connected CellsArcScan_SelectByGeometryArcScan{05DC9882-C037-4F04-BDB7-958132F5F8C3}
esriArcScan.VectorizationSelectByGeometryCommand
noneArcScan_CellSelectionMenuSelect connected cells based on geometry.
MenuInteractive Selection TargetArcScan_SelectionsMenunone{AACB49FD-85C9-4CFF-9719-8D9CD9845611}
esriArcScan.VectorizationSelectionsMenu
noneArcScan_CellSelectionMenunone
Command{ Selection Types }{ Vectorization_SelectionMultiMenu }none{5A6D431C-ADC1-4F0E-AAAC-3D313F62A482}
esriArcScan.VectorizationSelectionMultiItem
noneArcScan_SelectionsMenunone
CommandClear Selected CellsArcScan_ClearSelectionCommandArcScan{7EB10858-DC1E-486D-98FE-61E3F3A3E9B2}
esriArcScan.VectorizationClearSelectionCommand
noneArcScan_CellSelectionMenuClear the selected cell selection.
CommandSave Selection AsArcScan_SaveSelectionAsArcScan{B694DA0E-014C-47BF-BADB-21D16C0BC97C}
esriArcScan.VectorizationSaveSelectionAsCommand
noneArcScan_CellSelectionMenuSaves the current connected cell selection to a new raster file.
CommandSelect Connected CellsArcScan_SelectArcScan{A90B423C-9D7F-475D-81DB-627EB6C82194}
esriArcScan.VectorizationSelectTool
noneArcScan_VectorizationToolBarSelects connected cells.
CommandFind Connected Cell AreaArcScan_AreaArcScan{77F9B641-A12F-4202-A4C2-7A96C924E1C5}
esriArcScan.VectorizationAreaTool
noneArcScan_VectorizationToolBarFind connected cell area.
CommandFind Diagonal of the Envelope of Connected CellsArcScan_DiagonalArcScan{D9442B05-5DD2-4DA3-86FB-110EBB71A2F8}
esriArcScan.VectorizationDiagonalTool
noneArcScan_VectorizationToolBarFind diagonal of the envelope of connected cells.
CommandRaster Line WidthArcScan_LineWidthArcScan{27E54ABE-2B58-445B-9A1C-D59EEA1D7517}
esriArcScan.VectorizationLineWidthTool
noneArcScan_VectorizationToolBarFind the width of a raster line feature.
ToolbarCOGOCOGOToolbarnone{0101CB95-495A-4ECD-B6F1-C32BFFF17DF9}
esriEditor.COGOToolbar
nonenonenone
CommandTraverseEditor_TraverseWindowCommandAdvanced Edit Tools{957F26DD-9798-47BC-AA9E-1C6B10328175}
esriEditor.TraverseWindowCommand
noneCOGOToolbarShows the Traverse window.
CommandConstruct 2-Point LineEditor_ConstructTwoPointLineCommandAdvanced Edit Tools{E58659BA-5A77-4C2F-9AE6-0B2700475F03}
esriEditor.ConstructTwoPointLineCommand
noneCOGOToolbarConstructs a 2-Point line feature using COGO methods.
CommandOffset LineEditor_OffsetLineCommandAdvanced Edit Tools{CBC22CCF-F251-437C-A2BB-3F3DC3335352}
esriEditor.OffsetLineCommand
noneCOGOToolbarCreate a line at a specified distance and perpendicular offset from a selected line.
CommandConstruct a cul-de-sacCulDeSacCommandAdvanced Edit Tools{70DDBB82-919D-4E68-BABA-B1BFB6C02874}
esriEditor.CulDeSacCommand
noneCOGOToolbarConstruct a symmetrical or asymmetrical cul-de-sac from a street centerline.
CommandProportionEditor_ProportionCommandAdvanced Edit Tools{F0351581-29B7-46A6-A3C2-E601B66691B0}
esriEditor.ProportionCommand
noneCOGOToolbarSplits the selected feature proportionally.
CommandGround to Grid CorrectionGroundToGridCorrectionCommandAdvanced Edit Tools{7851E9DD-9FF8-4670-9CBB-914780603920}
esriEditor.GroundToGridCorrectionCommand
noneCOGOToolbarView and change the current direction offset and distance factor.
CommandCOGO ReportCOGOReportCommandAdvanced Edit Tools{400CFDBF-7F40-4514-94BD-F32052A2E7FA}
esriEditor.COGOReportCommand
noneCOGOToolbarShows/hides the COGO report window.
CommandCOGO AreaCOGOAreaCommandAdvanced Edit Tools{4DC0720C-A283-4455-81F7-BBDC3B3349B5}
esriEditor.COGOAreaCommand
noneCOGOToolbarReports the COGO area and other information for the selected COGO lines.
CommandCurve CalculatorCurveCalculatorCommandAdvanced Edit Tools{349610FB-3C6B-426F-9DBE-8197F992013D}
esriEditor.CurveCalculatorCommand
noneCOGOToolbarReports missing parameters for curves.
CommandSplit into COGO linesSplitIntoCOGOLinesCommandAdvanced Edit Tools{406C12C0-D9C8-4349-8D58-86C2107F6585}
esriEditor.SplitIntoCOGOLinesCommand
noneCOGOToolbarSplit selected line features into new two point line features.
CommandUpdate COGO AttributesEditor_UpdateCOGOAttributesCommandAdvanced Edit Tools{3B88738F-501C-4B7A-9228-F82365ACA623}
esriEditor.UpdateCOGOAttributesCommand
noneCOGOToolbarUpdate the line COGO attributes from the geometry of the selected features.
ToolbarData Frame ToolsTools_DataFrameToolbarnone{4A8E6349-065E-11D4-9FE9-00C04F6BC78E}
esriArcMapUI.DataFrameToolBar
nonenonenone
CommandRotate Data FramePanZoom_RotatePan/Zoom{0830FB36-7EE6-11D0-87EC-080009EC732A}
esriArcMapUI.RotateTool
noneTools_DataFrameToolbarRotate the data frame interactively
CommandClear RotationPanZoom_ClearMapRotationPan/Zoom{20E5982F-2BC9-47ED-9A39-73375DE3DF31}
esriArcMapUI.ClearMapRotationCommand
noneTools_DataFrameToolbarSet the data frame's rotation to zero
CommandRotate Data FramePanZoom_MapRotationPan/Zoom{B7913579-5A3B-4ECE-A12B-92530CE90C60}
esriArcMapUI.MapRotationControl
noneTools_DataFrameToolbarRotate the data frame by the specified angle
CommandCreate Viewer WindowBrowse_NewMapInsetTools{709608E3-5C7E-11D2-87BB-0000F8751720}
esriArcMapUI.NewMapInsetTool
noneTools_DataFrameToolbarCreate a new viewer window by dragging a rectangle.
ToolbarDimensioningDimensioningnone{448BD3DC-71A9-44C4-B1B1-4F5D8576DC9A}
esriEditor.DimensionToolBar
nonenonenone
CommandDimension ConstructorsDimension ConstructorsDimensioning{3D6289C4-22AE-4CE0-A6B9-7E2CE0466D8B}
esriEditor.DimensionConstructorControl
noneDimensioningSelect the construction method used to create new dimensions.
CommandDimension StylesDimension StylesDimensioning{1D6804ED-E984-11D3-9F79-00C04F6BDDD9}
esriEditor.DimensionStyleControl
noneDimensioningSelects the dimension style used for new dimension features.
CommandDimensioning ToolsDimensioning_ToolsDimensioning{3CCCBC14-1572-11D4-80D7-00C04F601565}
esriEditor.DimensioningTools
noneDimensioningAutomatically dimension the edge of a feature.
ToolbarDistributed GeodatabaseDistributed Geodatabasenone{74FEF2A6-0B53-4C37-A157-7930C08293E7}
esriGeoDatabaseDistributedUI.ReplicationToolBar
nonenonenone
CommandCreate ReplicaCreate ReplicaDistributed Geodatabase{EA2F6CBD-7152-471E-8EC1-7F71D7BFEC9F}
esriGeoDatabaseDistributedUI.CreateReplicaCommand
noneDistributed GeodatabaseCreate a child replica from an ArcSDE database to another database so it can be edited
CommandSynchronize ChangesSynchronize ReplicaDistributed Geodatabase{7D93758F-90F7-423B-B02D-CBFA9FD31289}
esriGeoDatabaseDistributedUI.SynchronizeReplicaCommand
noneDistributed GeodatabaseSynchronize data between a child and a parent replica
CommandExport Data Changes MessageLDistributed Geodatabase{56C26482-0FFC-4541-AE15-6DADC8AB9E47}
esriGeoDatabaseDistributedUI.ExportChangesCommand
noneDistributed GeodatabaseExport Changes to checked out data in a database into a delta database
CommandExport Acknowledgment Messagehttp://www.w3.org/2001/XMLSchemaDistributed Geodatabase{08D8A2D8-EB39-4832-9439-A409991F8FCA}
esriGeoDatabaseDistributedUI.ExportAckCommand
noneDistributed GeodatabaseExport acknowledgment message from a multi generation to xml file.
CommandImport MessageLDistributed Geodatabase{903258F7-5E96-4D99-AB24-74F526F32B8A}
esriGeoDatabaseDistributedUI.ImportChangesCommand
noneDistributed GeodatabaseImport Changes from a delta database or delta xml file to the current selected version or check-out.
CommandRe-Export Unacknowledged MessagesLDistributed Geodatabase{6798F85F-8912-45DF-B506-917825A3A404}
esriGeoDatabaseDistributedUI.ReExportChangesCommand
noneDistributed GeodatabaseRe-Export unacknowledged messages from a multi generation replica to xml updategram file.
CommandImport Schema ChangesriEditor.EditorRotateTool.1Distributed Geodatabase{6A0CE2E6-0EAC-45F4-85A2-D7A57F61A6CD}
esriGeoDatabaseDistributedUI.ImportReplicaSchemaCommand
noneDistributed GeodatabaseImport Schema Changes
CommandExport Replica SchemaLDistributed Geodatabase{D7026198-3D07-4680-8FA1-CE94342E3D7F}
esriGeoDatabaseDistributedUI.ExportReplicaSchemaCommand
noneDistributed GeodatabaseExport Replica Schema
CommandCompare Replica SchemariEditor.EditorRotateTool.1Distributed Geodatabase{D071B4EA-8711-42AB-A357-3BF1A0CE0E05}
esriGeoDatabaseDistributedUI.ExportReplicaSchemaChangesCommand
noneDistributed GeodatabaseExport Schema Changes
CommandManage ReplicasReplica ManagerDistributed Geodatabase{25DF5FD9-8614-4962-8E64-CBFA7FCB3C4C}
esriGeoDatabaseDistributedUI.ReplicaManagerCommand
noneDistributed GeodatabaseManage the replicas in a Geodatabase
CommandCreate Replica LayerCreate Replica LayerDistributed Geodatabase{ACE89576-F621-419E-A742-410A7CB027A3}
esriGeoDatabaseDistributedUI.CreateReplicaLayerCommand
noneDistributed GeodatabaseCreate Replica Layer
CommandExtract DataUntitledDistributed Geodatabase{090733BE-BEF9-469B-9BB1-5F17AD2A7D5A}
esriGeoDatabaseDistributedUI.DataExtractionCommand
noneDistributed GeodatabaseExtract data from one database into another database
ToolbarDrawPageLayout_DrawToolbarnone{5DEB1DB4-C2A9-11D1-B9A2-080009EE4E51}
esriArcMapUI.DrawToolBar
nonenonenone
MenuDrawingPageLayout_DrawingMenunone{CF3A35DE-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.ArrangeMenu
nonePageLayout_DrawToolbarnone
CommandNew Annotation GroupMap_NewGraphicsLayerData Frames{BC58C7A0-C68E-11D2-9F32-00C04F6BC6A5}
esriArcMapUI.NewGraphicsLayerCommand
nonePageLayout_DrawingMenuCreate a new annotation group in which to store text and graphics
MenuActive Annotation TargetPageLayout_ActiveGraphicsLayersMenunone{BC58C79F-C68E-11D2-9F32-00C04F6BC6A5}
esriArcMapUI.ActiveGraphicsLayerMenu
nonePageLayout_DrawingMenunone
Command{ Annotation Targets }{ PageLayout_GraphicsLayersListMenu }none{BC58C79C-C68E-11D2-9F32-00C04F6BC6A5}
esriArcMapUI.GraphicsLayersListMenu
nonePageLayout_ActiveGraphicsLayersMenunone
CommandGroupPageLayout_GroupPage Layout{4B96A443-FA41-11D0-83AF-080009B996CC}
esriArcMapUI.GroupCommand
nonePageLayout_DrawingMenuGroup the selected elements
CommandUngroupLayoutTools_UngroupPage Layout{4B96A444-FA41-11D0-83AF-080009B996CC}
esriArcMapUI.UngroupCommand
nonePageLayout_DrawingMenuUngroup the selected element(s)
MenuGraphic OperationsPageLayout_GeometryElementContextMenunone{CC0DCD29-DE5E-11D3-9FF8-00C04F6BC8DD}
esriArcMapUI.GeometryElementContextMenu
nonePageLayout_DrawingMenunone
CommandUnionPageLayout_GeometryElementUnionPage Layout{CC0DCD2B-DE5E-11D3-9FF8-00C04F6BC8DD}
esriArcMapUI.GeometryElementUnionCommand
nonePageLayout_GeometryElementContextMenuUnions the selected elements together
CommandIntersectPageLayout_GeometryElementIntersectPage Layout{CC0DCD2E-DE5E-11D3-9FF8-00C04F6BC8DD}
esriArcMapUI.GeometryElementIntersectCommand
nonePageLayout_GeometryElementContextMenuCreates a single intersected polygon from the selected elements
CommandRemove OverlapPageLayout_GeometryElementSymmetricDifferencePage Layout{CC0DCD2D-DE5E-11D3-9FF8-00C04F6BC8DD}
esriArcMapUI.GeometryElementSymmetricDifferenceCommand
nonePageLayout_GeometryElementContextMenuSymmetric Difference between the selected elements
CommandSubtractPageLayout_GeometryElementDifferencePage Layout{036BA451-E983-11D3-A005-00C04F6BC8DD}
esriArcMapUI.GeometryElementDifferenceCommand
nonePageLayout_GeometryElementContextMenuDifference between the selected elements
MenuOrderPageLayout_OrderMenunone{CF3A35E2-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.OrderMenu
nonePageLayout_DrawingMenunone
CommandBring to FrontPageLayout_BringToFrontPage Layout{92D490B2-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.BringToFrontCommand
nonePageLayout_OrderMenuBring the selected element(s) to the front
CommandSend to BackPageLayout_SendToBackPage Layout{92D490B3-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.SendToBackCommand
nonePageLayout_OrderMenuSend the selected element(s) to the back
CommandBring ForwardPageLayout_BringForwardPage Layout{92D490B4-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.BringForwardCommand
nonePageLayout_OrderMenuBring the selected element(s) forward
CommandSend BackwardPageLayout_SendBackwardPage Layout{92D490B5-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.SendBackwardCommand
nonePageLayout_OrderMenuSend the selected element(s) backwards
MenuNudgePageLayout_NudgeMenunone{CF3A35DF-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.NudgeMenu
nonePageLayout_DrawingMenunone
CommandNudge LeftPageLayout_NudgeLeftPage Layout{92D490AE-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.NudgeLeftCommand
nonePageLayout_NudgeMenuMove the selected element(s) left
CommandNudge RightPageLayout_NudgeRightPage Layout{92D490AF-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.NudgeRightCommand
nonePageLayout_NudgeMenuMove the selected element(s) right
CommandNudge UpPageLayout_NudgeUpPage Layout{92D490B0-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.NudgeUpCommand
nonePageLayout_NudgeMenuMove the selected element(s) up
CommandNudge DownPageLayout_NudgeDownPage Layout{92D490B1-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.NudgeDownCommand
nonePageLayout_NudgeMenuMove the selected element(s) down
MenuAlignPageLayout_AlignMenunone{CF3A35E0-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.AlignMenu
nonePageLayout_DrawingMenunone
CommandAlign to MarginsPageLayout_AlignToMarginsPage Layout{92D4909E-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignToMarginsCommand
nonePageLayout_AlignMenuToggle whether alignment is to page margins or elements in the selection
CommandAlign LeftPageLayout_AlignLeftPage Layout{92D4909F-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignLeftCommand
nonePageLayout_AlignMenuAlign selected elements to the left
CommandAlign CenterPageLayout_AlignCenterPage Layout{92D490A0-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignCenterCommand
nonePageLayout_AlignMenuAlign selected elements to the horizontal center
CommandAlign RightPageLayout_AlignRightPage Layout{92D490A1-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignRightCommand
nonePageLayout_AlignMenuAlign selected elements to the right
CommandAlign TopPageLayout_AlignTopPage Layout{92D490A2-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignTopCommand
nonePageLayout_AlignMenuAlign selected elements to the top
CommandAlign Vertical CenterPageLayout_AlignMiddlePage Layout{92D490A3-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignMiddleCommand
nonePageLayout_AlignMenuAlign selected elements to the vertical center
CommandAlign BottomPageLayout_AlignBottomPage Layout{92D490A4-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.AlignBottomCommand
nonePageLayout_AlignMenuAlign selected elements to the bottom
MenuDistributePageLayout_DistributeMenunone{CF3A35E5-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.DistributeMenu
nonePageLayout_DrawingMenunone
CommandDistribute HorizontallyPageLayout_DistributeHorizontallyPage Layout{92D490A5-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.DistributeHorizontallyCommand
nonePageLayout_DistributeMenuDistribute selected elements evenly in the horizontal direction
CommandDistribute VerticallyPageLayout_DistributeVerticallyPage Layout{92D490A6-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.DistributeVerticallyCommand
nonePageLayout_DistributeMenuDistribute selected elements evenly in the vertical direction
CommandMake Same SizePageLayout_MakeSameSizePage Layout{92D490A7-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.MakeSameSizeCommand
nonePageLayout_DistributeMenuMake selected elements the same height and width
CommandMake Same WidthPageLayout_MakeSameWidthPage Layout{92D490A8-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.MakeSameWidthCommand
nonePageLayout_DistributeMenuMake selected elements the same width
CommandMake Same HeightPageLayout_MakeSameHeightPage Layout{92D490A9-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.MakeSameHeightCommand
nonePageLayout_DistributeMenuMake the selected elements the same height
CommandFit to MarginsPageLayout_FitToMarginPage Layout{B7E9C434-4288-4AA1-A613-8861723B8130}
esriArcMapUI.FitToMarginCommand
nonePageLayout_DistributeMenuMake the selected element the same size as the printer margin
CommandFit Width to MarginsPageLayout_FitToMarginWidthPage Layout{B7E9C435-4288-4AA1-A613-8861723B8130}
esriArcMapUI.FitToMarginWidthCommand
nonePageLayout_DistributeMenuMake the selected element the same width as the printer margin
CommandFit Height to MarginsPageLayout_FitToMarginHeightPage Layout{B7E9C436-4288-4AA1-A613-8861723B8130}
esriArcMapUI.FitToMarginHeightCommand
nonePageLayout_DistributeMenuMake the selected element the same height as the printer margin
MenuRotate or FlipPageLayout_RotateOrFlipMenunone{CF3A35E1-EB3C-11D1-8782-0000F8751720}
esriArcMapUI.RotateOrFlipMenu
nonePageLayout_DrawingMenunone
CommandRotate RightPageLayout_RotateLeftPage Layout{92D490AA-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.RotateLeftCommand
nonePageLayout_RotateOrFlipMenuRotate the selected text or graphic(s) 90 degrees clockwise
CommandRotate LeftPageLayout_RotateRightPage Layout{92D490AB-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.RotateRightCommand
nonePageLayout_RotateOrFlipMenuRotate the selected text or graphic(s) 90 degrees counter-clockwise
CommandFlip HorizontallyPageLayout_FlipHorizontalPage Layout{92D490AC-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.FlipHorizontalCommand
nonePageLayout_RotateOrFlipMenuFlip the selected text or element(s) horizontally
CommandFlip VerticallyPageLayout_FlipVerticalPage Layout{92D490AD-DF9D-11D1-8779-0000F8751720}
esriArcMapUI.FlipVerticalCommand
nonePageLayout_RotateOrFlipMenuFlip the selected text or element(s) vertically
CommandDefault Symbol PropertiesMap_DefaultSymbolPropertiesData Frames{14B5EEDA-D906-11D3-9FF5-00C04F6BC8DD}
esriArcMapUI.DefaultSymbolPropertiesCommand
nonePageLayout_DrawingMenuSet Default Symbol Properties
CommandSelect ElementsPageLayout_SelectToolPage Layout{C22579D1-BC17-11D0-8667-0000F8751720}
esriArcMapUI.SelectTool
nonePageLayout_DrawToolbarSelect, resize and move text, graphics and other objects placed on the map
CommandRotatePageLayout_RotateElementPage Layout{66770314-FBC0-11D1-A24E-080009B6F22B}
esriArcMapUI.RotateElementTool
nonePageLayout_DrawToolbarRotates the selected text or graphic(s)
CommandZoom to Selected ElementsPageLayout_ZoomToSelectedGraphicsPage Layout{5D3E617C-13B6-4C7F-AB10-423DE02A2411}
esriArcMapUI.ZoomToSelectedGraphicsCommand
nonePageLayout_DrawToolbarZoom to selected elements
CommandDrawing ToolsPageLayout_DrawingToolsPage Layout{5AAD204F-D030-11D2-9F35-00C04F6BC61A}
esriArcMapUI.MxDrawToolsPalette
nonePageLayout_DrawToolbarDraw a rectangle
CommandText toolsPageLayout_TextToolsPage Layout{507DD1C3-E921-11D2-9F58-00C04F6BC6A5}
esriArcMapUI.MxTextToolsPalette
nonePageLayout_DrawToolbarAdd text to the map by typing it in
CommandEdit VerticesPageLayout_EditVerticesPage Layout{D5109671-75B9-11D2-A2D3-080009B6F22B}
esriArcMapUI.EditVerticesTool
nonePageLayout_DrawToolbarEdit vertices of selected line, polygon, or curve
CommandFontText_FontText{BDBDC3D1-D56D-11D1-A219-080009B6F22B}
esriArcMapUI.FontNameControl
nonePageLayout_DrawToolbarChange to a different font
CommandFont SizeText_FontSizeText{BDBDC3D2-D56D-11D1-A219-080009B6F22B}
esriArcMapUI.FontSizeControl
nonePageLayout_DrawToolbarChange the font size
CommandBoldText_BoldText{BDBDC3D3-D56D-11D1-A219-080009B6F22B}
esriArcMapUI.FontBoldCommand
nonePageLayout_DrawToolbarToggle bold font
CommandItalicText_ItalicText{BDBDC3D4-D56D-11D1-A219-080009B6F22B}
esriArcMapUI.FontItalicCommand
nonePageLayout_DrawToolbarToggle italic font
CommandUnderlineText_UnderlineText{BDBDC3D5-D56D-11D1-A219-080009B6F22B}
esriArcMapUI.FontUnderlineCommand
nonePageLayout_DrawToolbarToggle underline font
CommandFont ColorFont_ColorText{08C6EA8D-E7BC-11D2-9F57-00C04F6BC6A5}
esriArcMapUI.FontColorToolControl
nonePageLayout_DrawToolbarChange the font color
CommandFill ColorFill_ColorText{7A041B2A-E85E-11D2-9F57-00C04F6BC6A5}
esriArcMapUI.FillColorToolControl
nonePageLayout_DrawToolbarChange the fill color
CommandLine ColorLine_ColorText{7A041B2B-E85E-11D2-9F57-00C04F6BC6A5}
esriArcMapUI.LineColorToolControl
nonePageLayout_DrawToolbarChange the line color
CommandMarker ColorMarker_ColorText{7A041B2C-E85E-11D2-9F57-00C04F6BC6A5}
esriArcMapUI.MarkerColorToolControl
nonePageLayout_DrawToolbarChange the marker color
ToolbarEditorEditor_EditorToolbarnone{C671B640-83B9-11D2-850C-0000F875B9C6}
esriEditor.EditorToolBar
nonenonenone
MenuEditorEditor_EditorMenunone{9EBF3A20-D0C0-11D0-802D-0000F8037368}
esriEditor.EditorMenu
noneEditor_EditorToolbarnone
CommandStart EditingEditor_StartEditingEditor{59D2AFD0-9EA2-11D1-9165-0080C718DF97}
esriEditor.StartEditingCommand
noneEditor_EditorMenuStarts an edit session
CommandStop EditingEditor_StopEditingEditor{59D2AFD1-9EA2-11D1-9165-0080C718DF97}
esriEditor.StopEditingCommand
noneEditor_EditorMenuStops the edit session
CommandSave EditsEditor_SaveEditsEditor{59D2AFD2-9EA2-11D1-9165-0080C718DF97}
esr