/3.0 (ODB.1 FirstRootClassName: "Project" Roots: 2 Version: 30 ) (Project.2 Name: "poly_edge.apr" CreationDate: "Tuesday, March 17, 1998 06:21:09" GUIName: "Project" Win: 3 CSMgr: 4 VisGUIWidth: 70 Doc: 5 Doc: 8 Doc: 11 ActiveDoc: 11 Buttons: 21 Buttons: 22 Buttons: 23 Scripts: 24 GUI: 25 WorkDir: 786 WinX: 11 WinY: 4 WinW: 741 WinH: 569 SerialNumber: "709971109536" SelColor: 787 GUINames: 788 GUINames: 789 GUINames: 790 GUINames: 791 GUINames: 792 GUINames: 793 GUINames: 794 ) (DocWin.3 Owner: 2 Open: 1 X: 5 Y: 5 W: 268 H: 318 ) (CSMgr.4 ) (SEd.5 Name: "a.CommonLine" Creator: "Robert Cheetham" CreationDate: "Tuesday, March 17, 1998 06:22:55" GUIName: "Script" Win: 6 CSMgr: 7 Source: "theView = av.GetActiveDoc\n\n\ntheFTab = theView.GetActiveThemes.Get(0).GetFTab\n\nif ((theView.GetActiveThemes.Count=0) or \n (theView.GetActiveThemes.Get(0).Is(FTheme).Not)) then\n msgbox.error(\"An Active Polygon Theme is Required\",\"Exiting\")\n return(nil)\nend\n\n\ntheBitmap = theFTab.GetSelection\n\nif (theBitmap.Count<>2) then \n msgbox.error (\"There are more or less than two polygons selected in the Active Theme\" + NL + \n \"Please select only two polygons and try again.\",\"Select only 2 Polygons\")\n return nil\n end\n\n\ntheShapeField = theFtab.FindField(\"Shape\")\n\nthePolygonList = List.Make\n\nfor each x in theBitmap\n thePolygonList.Add(theFtab.ReturnValue(theShapeField, x).AsPolygon)\nend\n\ntheFirstPolygon = thePolygonList.Get(0)\ntheSecondPolygon = thePolygonList.Get(1)\n\ntheFirstPerim = theFirstPolygon.ReturnLength\ntheSecondPerim = theSecondPolygon.ReturnLength\n\n\ntheCommonLine = theFirstPolygon.LineIntersection (theSecondPolygon)\n\ntheLineLength = theCommonLine.ReturnLength\n\n\ntheReportString = \"Results:\" + NL +\n \"Common Length = \" + theLineLength.AsString + NL + NL + \n \"Polygon 1 Perimeter: \" + theFirstPerim.AsString + NL + \n \"Polygon 2 Perimeter: \" + theSecondPerim.AsString + NL + NL + \n \"CommonLength / Perimeter\" + NL +\n \"Polygon 1 = \" + (theLineLength / theFirstPerim).AsString + NL +\n \"Polygon 2 = \" + (theLineLength / theSecondPerim).AsString\n \nMsgBox.Report (theReportString,\"Your Results\")\n\n" FontSize: 1 ) (DocWin.6 Owner: 5 X: 17 W: 697 H: 436 ) (CSMgr.7 ) (SEd.8 Name: "a.EdgeMatrix" CreationDate: "Saturday, March 21, 1998 12:37:56" GUIName: "Script" Win: 9 CSMgr: 10 Source: "' Script to measure length of shared edges between two or more polygons\n' an active theme.\n' Input 1: 1 active polygon theme (will use first active theme if more than one selected)\n' Input 2: polygon theme must have 1 unique id field - will prompt from list of fields id field.\n' Will use selected features unless none selected in which case will use all features.\n' Output: a matrix (*.dbf table) with equal number of rows and fields (square) and\n' populated by the ratio of the shared perimeter of the record t o the total perimeter\n' If nil or self then 0, else a fraction to 4 decimals.\n' However, *.dbf specification will not allow more than 255 fields so this is the\n' theoretical limit. The script will check for 250 records. If there are >250, will stop.\n\ntheView = av.GetActiveDoc\n\n' Check to see if active theme and theme is polygon theme\nif (theView.GetActiveThemes.Count=0) then\n msgbox.error(\"An Active Feature Theme is Required\",\"Exiting\")\n return nil\nend\n\ntheTheme = theView.GetActiveThemes.Get(0)\ntheFTab = theTheme.GetFTab\n\nif (theFTab.GetShapeClass.GetClassName <> \"POLYGON\") then\n msgbox.error(\"The active theme must be a Polygon theme\",\"Exiting\")\n return nil\nend\n\n\n' Count up the selected records. if none then select all - put in BitMap\ntheBitmap = theFTab.GetSelection\nunSelectAll = False\n\nif (theBitmap.Count=0) then \n unSelectAll = True\n theFtab.GetSelection.SetAll\n theFtab.UpdateSelection\n theBitmap = theFTab.GetSelection\nend\n\n\n' Check to see if more than 250 selected records\nif (theBitmap.Count > 250 ) then\n msgbox.Error (\"There are more than 250 records selected. Please select 250 \" + \n \"or less records and try again.\",\"Exiting\")\nend\n\n' Get an id field\ntheShapeField = theFtab.FindField(\"Shape\")\ntheFieldList = theFTab.GetFields\nanotherFieldList = List.Make\nfor each f in theFieldList\n if (f.GetType = #FIELD_CHAR) then\n anotherFieldList.Add(f)\n end\nend\ntheIDField = MsgBox.List (anotherFieldList,\"Please select a field to use as an unique ID\", \"Select ID Field\")\n\nif (theIDField = nil) then\n msgbo x.error (\"No ID Field was selected. Exiting.\",\"Exiting\")\n return nil\nend\n\n\n' Where to save the new file?\n' Specify the output shapefile...\noutFName = av.GetProject.MakeFileName(\"table\", \"dbf\")\noutFName = FileDialog.Put(outFName, \"*.dbf\", \"Output Matrix Table\")\nif (outFName = Nil) then\n exit\nend\n \n\n' Create new file - make it editable\nexportMatrix = VTab.MakeNew (outFName, dBase)\nexportMatrix.SetEditable(TRUE)\n\n\n\n' Create the new fields - first field is ID\nnewIDField = Field.Make(\"ID_Field\", theIDField.Ge tType, theIDField.GetWidth,theIDField.GetPrecision)\nnewIDField.Copy(theIDField)\nexportMatrix.AddFields({newIDField})\n\nexportFields = List.Make\ntheWidth = 6\nthePrecis = 4\n\nfor each x in theBitmap\n idValue = theFTab.ReturnValue(theIDField, x)\n newField = Field.Make(idValue, #FIELD_DOUBLE, theWidth, thePrecis)\n exportFields.Add(newField)\nend\n\nexportMatrix.AddFields(exportFields)\n\n\n\n' Loop through each polygon in theBitmap,\n' comparing it to all other polygons in the Bitmap\n' Add a record, compare to all oth ers, populating the fields as you go.\n' Loop\n' If nil or self, then 0, else a fraction to 4 decimals\n\n' Get all the polygons in a list so we don't have to keep hitting the table\nfor each i in theBitmap\n ' Do the Status thing\n av.ShowMsg (\"Calculating Matrix...\")\n av.SetStatus(i/theBitmap.Count*100)\n \n count = 0\n newRec = exportMatrix.AddRecord\n idValue = theFTab.ReturnValue(theIDField, i)\n exportMatrix.SetValue (newIDField, newRec, idValue)\n theFirstPolygon = (theFTab.ReturnValue(theShapeField, i)) .AsPolygon\n \n for each j in theBitmap\n theSecondPolygon = (theFTab.ReturnValue(theShapeField, j)).AsPolygon\n theSecondIDValue = theFTab.ReturnValue(theIDField,j)\n if (idValue = theSecondIDValue) then\n theRatio = 0\n else\n theFirstPerim = theFirstPolygon.ReturnLength\n theCommonLine = theFirstPolygon.LineIntersection (theSecondPolygon)\n theLineLength = theCommonLine.ReturnLength\n theRatio = theLineLength / theFirstPerim\n if (theRatio.IsNull) then\n theRatio = 0 \n end\n end\n theField = exportMatrix.FindField(theSecondIDValue)\n exportMatrix.SetValue(theField, newRec, theRatio)\n count = count + 1\n end\n\n \nend\n\n' Save the file\nexportMatrix.SetEditable(FALSE)\n\nav.ClearMsg\nav.ClearStatus\n\nif (unSelectAll=True) then\n theFtab.GetSelection.ClearAll\n theFtab.UpdateSelection\nend\n\n' Add the new table to the project and make it visible and active document\ntheAddTable = Table.Make(exportMatrix)\nav.GetProject.AddDoc (theAddTable)\ntheAddTable.GetWin.Open\ntheAdd Table.GetWin.Activate\n" ) (DocWin.9 Owner: 8 X: 40 Y: 2 W: 659 H: 426 ) (CSMgr.10 ) (View.11 Name: "Common Edge View" Creator: "Robert Cheetham" CreationDate: "Tuesday, March 17, 1998 06:21:14" GUIName: "View" Win: 12 CSMgr: 13 Graphics: 14 Dpy: 15 TOCWidth: 150 ) (DocWin.12 Owner: 11 Open: 1 X: 20 Y: 20 W: 686 H: 411 ) (CSMgr.13 ) (GList.14 Dpy: 15 FormatNumb: 20 ) (MapDpy.15 Left: -0.14238410596026 Bottom: 0.04558498896247 Top: 0.98532008830022 Right: 1.16887417218543 Scale: 16 FrameTop: 3.94791666666667 FrameRight: 5.42708333333333 PageDpy: 17 FitToPage: 1 MouseLoc: 19 ) (Numb.16 N: 4.13883627946130 ) (PageDpy.17 Top: 3.94791666666667 Right: 5.42708333333333 ReportUnits: 1 Units: 1 Scale: 18 ZoomRight: 5.42708333333333 ZoomTop: 3.94791666666667 GridSpacingX: 0.25000000000000 GridSpacingY: 0.25000000000000 ) (Numb.18 N: 96.00000000000000 ) (PointD.19 x: 0.67306250079445 y: 0.99238813116226 ) (Numb.20 ) (LButn.21 HelpTopic: "New_button" Update: "Doc.NewUpdate" Label: "&New" Click: "View.New" ) (LButn.22 HelpTopic: "Open_button" Update: "Doc.OpenUpdate" Label: "&Open" Click: "Doc.Open" ) (LButn.23 HelpTopic: "Print_button" Update: "Doc.ActionUpdate" Label: "P&rint" Click: "Doc.Action" ) (NameDict.24 ) (DocGUI.25 Name: "View" Type: "View" Modified: 1 Visible: 1 MenuBar: 26 ButnBar: 131 Popups: 179 ToolBar: 198 NewScript: "View.New" OpenScript: "Doc.Open" ActionScript: "Doc.Action" NewUpdateScript: "Doc.NewUpdate" OpenUpdateScript: "Doc.OpenUpdate" ActionUpdateScript: "Doc.ActionUpdate" Title: "Views" Icon: 247 ) (MenuBar.26 Child: 27 Child: 39 Child: 59 Child: 80 Child: 102 Child: 116 Child: 126 ) (PMenu.27 InternalName: "File" Child: 28 Child: 29 Child: 30 Child: 31 Child: 32 Child: 33 Child: 34 Child: 35 Child: 36 Child: 37 Child: 38 Label: "&File" ) (Choice.28 Help: "Closes the active component" HelpTopic: "Close" Label: "&Close" Click: "Project.CloseDoc" Shortcut: "Keys.None" ) (Choice.29 Help: "Closes all components" HelpTopic: "Close_All" Label: "Close &All" Click: "Project.CloseAll" Shortcut: "Keys.None" ) (Space.30 ) (Choice.31 Help: "Allows you to specify the current working directory" HelpTopic: "Set_Working_Directory" Label: "Set &Working Directory..." Click: "Project.SetProjectWorkDir" Shortcut: "Keys.None" ) (Choice.32 Help: "Saves the current project" HelpTopic: "Save_Project" Label: "&Save Project" Click: "Project.Save" Shortcut: "Keys.Ctrl+S" ) (Space.33 ) (Choice.34 Help: "Prints the view" HelpTopic: "Print" Label: "&Print..." Click: "View.Print" Shortcut: "Keys.None" ) (Choice.35 Help: "Edits the printer and the printing options" HelpTopic: "Print_Setup" Label: "P&rint Setup..." Click: "Project.PrintSetup" Shortcut: "Keys.None" ) (Choice.36 Disabled: 1 Help: "Exports the view" HelpTopic: "Export" Update: "View.HasThemesUpdate" Label: "&Export..." Click: "View.ExportDisp" Shortcut: "Keys.None" ) (Space.37 ) (Choice.38 Help: "Exits ArcView" HelpTopic: "Exit" Label: "E&xit" Click: "Project.Exit" Shortcut: "Keys.None" ) (PMenu.39 InternalName: "Edit" Child: 40 Child: 41 Child: 42 Child: 43 Child: 44 Child: 45 Child: 46 Child: 47 Child: 48 Child: 49 Child: 50 Child: 51 Child: 52 Child: 53 Child: 54 Child: 55 Child: 56 Child: 57 Child: 58 Label: "&Edit" ) (Choice.40 Disabled: 1 Help: "Cuts the active themes to the clipboard" HelpTopic: "Cut_Themes" Update: "View.ActiveDeletableThemesUpdate" Label: "Cut T&hemes" Click: "View.CutThemes" Shortcut: "Keys.None" ) (Choice.41 Disabled: 1 Help: "Copies the active themes to the clipboard" HelpTopic: "Copy_Themes" Update: "View.ActiveThemesUpdate" Label: "Cop&y Themes" Click: "View.CopyThemes" Shortcut: "Keys.None" ) (Choice.42 Disabled: 1 Help: "Removes the active themes from the view" HelpTopic: "Delete_Themes" Update: "View.ActiveDeletableThemesUpdate" Label: "De&lete Themes" Click: "View.DeleteThemes" Shortcut: "Keys.None" ) (Space.43 ) (Choice.44 Disabled: 1 Help: "Undo the last edit to graphics on a view" HelpTopic: "Undo_Graphic_Edit_on_a_view" Update: "View.UndoEditUpdate" Label: "&Undo Graphic Edit" Click: "View.UndoEdit" Shortcut: "Keys.Ctrl+Z" ) (Choice.45 Disabled: 1 Invisible: 1 Help: "Redo the last edit operation on a theme that was undone" HelpTopic: "Redo_Edit_on_a_view" Update: "View.RedoEditUpdate" Label: "&Redo Feature Edit" Click: "View.RedoEdit" Shortcut: "Keys.Ctrl+Y" ) (Space.46 ) (Choice.47 Disabled: 1 Help: "Cuts the selected graphics to the clipboard" HelpTopic: "Cut_Graphics" Update: "View.CutUpdate" Label: "Cu&t Graphics" Click: "View.CutGraphics" Shortcut: "Keys.Ctrl+X" ) (Choice.48 Disabled: 1 Help: "Copies the selected graphics to the clipboard" HelpTopic: "Copy_Graphics" Update: "View.CopyUpdate" Label: "&Copy Graphics" Click: "View.CopyGraphics" Shortcut: "Keys.Ctrl+C" ) (Choice.49 Disabled: 1 Help: "Removes the selected graphics from the view" HelpTopic: "Delete_Graphics" Update: "View.DeleteUpdate" Label: "&Delete Graphics" Click: "View.DeleteGraphics" Shortcut: "Keys.Del" ) (Space.50 ) (Choice.51 Disabled: 1 Help: "Combines the selected polygons" HelpTopic: "Combine_Graphics" Update: "View.CombineUpdate" Label: "Com&bine Graphics" Click: "View.CombineGraphics" Shortcut: "Keys.None" ) (Choice.52 Disabled: 1 Help: "Unions the selected graphics to create a new graphic" HelpTopic: "Union_Graphics" Update: "View.UnionUpdate" Label: "U&nion Graphics" Click: "View.UnionGraphics" Shortcut: "Keys.None" ) (Choice.53 Disabled: 1 Help: "Subtracts one selected polygon from the other selected polygon" HelpTopic: "Subtract_Graphics" Update: "View.SubtractUpdate" Label: "&Subtract Graphics" Click: "View.SubtractGraphics" Shortcut: "Keys.None" ) (Choice.54 Disabled: 1 Help: "Creates a new polygon from the area of overlap between the selected polygons" HelpTopic: "Intersect_Graphics" Update: "View.IntersectUpdate" Label: "&Intersect Graphics" Click: "View.IntersectGraphics" Shortcut: "Keys.None" ) (Space.55 ) (Choice.56 Disabled: 1 Help: "Inserts the contents of the clipboard" HelpTopic: "Paste" Update: "View.PasteUpdate" Label: "&Paste" Click: "View.Paste" Shortcut: "Keys.Ctrl+V" ) (Space.57 ) (Choice.58 Disabled: 1 Help: "Selects all graphics in the view" HelpTopic: "Select_All_Graphics" Update: "View.HasGraphicsUpdate" Label: "Select &All Graphics" Click: "Graphic.SelectAll" Shortcut: "Keys.None" ) (PMenu.59 InternalName: "View" Child: 60 Child: 61 Child: 62 Child: 63 Child: 64 Child: 65 Child: 66 Child: 67 Child: 68 Child: 69 Child: 70 Child: 71 Child: 72 Child: 73 Child: 74 Child: 75 Child: 76 Child: 77 Child: 78 Child: 79 Label: "&View" ) (Choice.60 Help: "Displays the dialog box to edit properties of the view" HelpTopic: "View_Properties" Label: "&Properties..." Click: "View.Properties" Shortcut: "Keys.None" ) (Space.61 ) (Choice.62 Help: "Inserts themes into the view" HelpTopic: "Add_Theme" Label: "&Add Theme..." Click: "View.Add" Shortcut: "Keys.Ctrl+T" ) (Choice.63 Disabled: 1 Help: "Displays a dialog box to create a geocoded theme" HelpTopic: "Geocode_Addresses" Update: "View.GeocodeUpdate" Label: "&Geocode Addresses..." Click: "View.Geocode" Shortcut: "Keys.None" ) (Choice.64 Disabled: 1 Help: "Displays a dialog box to create an XY or dynamic segmentation event-based theme " HelpTopic: "Add_Event_Theme" Update: "View.AddEventUpdate" Label: "Add &Event Theme..." Click: "View.AddEvent" Shortcut: "Keys.None" ) (Choice.65 Help: "Creates a new theme" HelpTopic: "New_Theme" Label: "&New Theme..." Click: "View.NewTheme" Shortcut: "Keys.None" ) (Choice.66 Disabled: 1 Help: "Makes all themes visible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "&Themes On" Click: "View.ThemesOn" Shortcut: "Keys.None" ) (Choice.67 Disabled: 1 Help: "Makes all themes invisible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "T&hemes Off" Click: "View.ThemesOff" Shortcut: "Keys.Esc" ) (Space.68 ) (Choice.69 Disabled: 1 Help: "Create a Layout from the View" HelpTopic: "Layout_menu_choice" Update: "View.HasThemesUpdate" Label: "La&yout..." Click: "View.Layout" Shortcut: "Keys.None" ) (Space.70 ) (Choice.71 Disabled: 1 Help: "Zooms to the extent of all themes" HelpTopic: "Zoom_to_Full_Extent" Update: "View.HasDataUpdate" Label: "Full E&xtent" Click: "View.ZoomFullExtent" Shortcut: "Keys.None" ) (Choice.72 Disabled: 1 Help: "Zooms in on the center of the display" HelpTopic: "Zoom_In" Update: "View.HasDataUpdate" Label: "Zoom &In" Click: "View.ZoomIn" Shortcut: "Keys.None" ) (Choice.73 Disabled: 1 Help: "Zooms out from the center of the display" HelpTopic: "Zoom_Out" Update: "View.HasDataUpdate" Label: "Zoom &Out" Click: "View.ZoomOut" Shortcut: "Keys.None" ) (Choice.74 Disabled: 1 Help: "Zooms to the extent of active themes" HelpTopic: "Zoom_to_Active_Theme" Update: "View.ActiveThemesUpdate" Label: "&Zoom To Themes" Click: "View.ZoomToThemes" Shortcut: "Keys.None" ) (Choice.75 Disabled: 1 Help: "Zooms to the extent of the selected features" HelpTopic: "Zoom_to_Selected" Update: "View.SelectableThemesUpdate" Label: "Zoom To &Selected" Click: "View.ZoomToSelected" Shortcut: "Keys.None" ) (Choice.76 Disabled: 1 Help: "Goes back to the previous extent you were viewing" HelpTopic: "Zoom_Previous" Update: "View.UndoZoomUpdate" Label: "Zoom Pre&vious" Click: "View.UndoZoom" Shortcut: "Keys.None" ) (Space.77 ) (Choice.78 Disabled: 1 Help: "Finds features in the active themes using the text you enter" HelpTopic: "Find" Update: "View.TabularThemesUpdate" Label: "&Find..." Click: "View.Find" Shortcut: "Keys.Ctrl+F" ) (Choice.79 Disabled: 1 Help: "Locates an address in the active, matchable theme" HelpTopic: "Locate_Address" Update: "View.LocateUpdate" Label: "&Locate Address..." Click: "View.Locate" Shortcut: "Keys.None" ) (PMenu.80 InternalName: "Theme" Child: 81 Child: 82 Child: 83 Child: 84 Child: 85 Child: 86 Child: 87 Child: 88 Child: 89 Child: 90 Child: 91 Child: 92 Child: 93 Child: 94 Child: 95 Child: 96 Child: 97 Child: 98 Child: 99 Child: 100 Child: 101 Label: "&Theme" ) (Choice.81 Disabled: 1 Help: "Displays the dialog box to edit properties of the active theme" HelpTopic: "Theme_Properties" Update: "View.ActiveThemesUpdate" Label: "&Properties..." Click: "View.ThemeProperties" Shortcut: "Keys.None" ) (Space.82 ) (Choice.83 Disabled: 1 Help: "Starts or stops editing of shapefile" HelpTopic: "Start_Stop_Editing_in_a_view" Update: "View.ToggleEditingUpdate" Label: "Start &Editing" Click: "View.ToggleEditing" Shortcut: "Keys.None" ) (Choice.84 Disabled: 1 Help: "Save edits to the source shapefile" HelpTopic: "Save_edits_theme" Update: "View.SaveEditsUpdate" Label: "Save Ed&its" Click: "View.SaveEdits" Shortcut: "Keys.None" ) (Choice.85 Disabled: 1 Help: "Saves edits to a new shapefile" HelpTopic: "Save_edits_as_theme" Update: "View.SaveEditsUpdate" Label: "Save E&dits As..." Click: "View.SaveEditsAs" Shortcut: "Keys.None" ) (Choice.86 Disabled: 1 Help: "Converts a theme to a shapefile" HelpTopic: "Convert_to_Shapefile" Update: "View.ExportUpdate" Label: "Convert to &Shapefile..." Click: "View.Export" Shortcut: "Keys.None" ) (Space.87 ) (Choice.88 Disabled: 1 Help: "Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Label: "Edit &Legend..." Click: "View.EditLegendClick" Shortcut: "Keys.None" ) (Choice.89 Disabled: 1 Help: "Shows or hides the active themes' legends" HelpTopic: "Hide_show_Legend" Update: "View.ActiveThemesUpdate" Label: "&Hide/Show Legend" Click: "View.ToggleLegend" Shortcut: "Keys.None" ) (Space.90 ) (Choice.91 Disabled: 1 Help: "Displays the Re-match dialog for re-matching addresses" HelpTopic: "Re_match_Addresses" Update: "View.EditMatchUpdate" Label: "&Re-match Addresses..." Click: "View.EditMatch" Shortcut: "Keys.None" ) (Space.92 ) (Choice.93 Disabled: 1 Help: "Labels features in active, visible themes" HelpTopic: "Auto_label" Update: "View.LabelThemesUpdate" Label: "&Auto-label..." Click: "View.LabelThemes" Shortcut: "Keys.Ctrl+L" ) (Choice.94 Disabled: 1 Help: "Removes any labels from active themes" HelpTopic: "Remove_Labels" Update: "View.RemoveThemeLabelsUpdate" Label: "Rem&ove Labels" Click: "View.RemoveThemeLabels" Shortcut: "Keys.Ctrl+R" ) (Choice.95 Disabled: 1 Help: "Removes the overlapping labels from active themes, if they are still green." HelpTopic: "Remove_Overlapping_Labels" Update: "View.RemoveOverlapThemeLabelsUpdate" Label: "Remove Overlappi&ng Labels" Click: "View.RemoveOverlapThemeLabels" Shortcut: "Keys.None" ) (Choice.96 Disabled: 1 Help: "Converts selected overlapping labels to symbol of selected good label" HelpTopic: "Convert_Overlapping_Labels" Update: "View.ConvertOverlapLabelsUpdate" Label: "&Convert Overlapping Labels" Click: "View.ConvertOverlapLabels" Shortcut: "Keys.Ctrl+O" ) (Space.97 ) (Choice.98 Disabled: 1 Help: "Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Label: "&Table..." Click: "View.ShowTable" Shortcut: "Keys.None" ) (Choice.99 Disabled: 1 Help: "Displays the Query Builder to select features with a logical expression" HelpTopic: "Query_Builder" Update: "View.AttributeThemesUpdate" Label: "&Query..." Click: "View.Query" Shortcut: "Keys.Ctrl+Q" ) (Choice.100 Disabled: 1 Help: "Selects features in the active themes using another theme's features" HelpTopic: "Select_By_Theme" Update: "View.SelectableThemesUpdate" Label: "Select &By Theme..." Click: "View.SelectByTheme" Shortcut: "Keys.None" ) (Choice.101 Disabled: 1 Help: "Unselects the selected features of all active themes" HelpTopic: "Clear_Selected_Features" Update: "View.AttributeThemesUpdate" Label: "Clear Selected &Features" Click: "View.ClearSelect" Shortcut: "Keys.None" ) (PMenu.102 InternalName: "Graphics" Child: 103 Child: 104 Child: 105 Child: 106 Child: 107 Child: 108 Child: 109 Child: 110 Child: 111 Child: 112 Child: 113 Child: 114 Child: 115 Label: "&Graphics" ) (Choice.103 Disabled: 1 Help: "Displays the property editor for the selected graphic" HelpTopic: "Graphic_Properties" Update: "Graphic.HasSelectionUpdate" Label: "&Properties..." Click: "Graphic.Edit" Shortcut: "Keys.None" ) (Space.104 ) (Choice.105 Disabled: 1 Help: "Displays a dialog box to adjust size and position of selected graphic" HelpTopic: "Size_and_Position" Update: "Graphic.SingleSelectionUpdate" Label: "&Size and Position..." Click: "Graphic.SizePos" Shortcut: "Keys.None" ) (Choice.106 Disabled: 1 Help: "Aligns the selected graphics" HelpTopic: "Align" Update: "Graphic.HasSelectionUpdate" Label: "&Align..." Click: "Graphic.Align" Shortcut: "Keys.Ctrl+A" ) (Space.107 ) (Choice.108 Disabled: 1 Help: "Moves selected graphics in front of other graphics" HelpTopic: "Bring_to_Front_on_a_view" Update: "Graphic.HasSelectionUpdate" Label: "Bring to &Front" Click: "Graphic.ToFront" Shortcut: "Keys.None" ) (Choice.109 Disabled: 1 Help: "Moves selected graphics behind other graphics" HelpTopic: "Send_to_Back_on_a_view" Update: "Graphic.HasSelectionUpdate" Label: "Send to &Back " Click: "Graphic.ToBack" Shortcut: "Keys.None" ) (Choice.110 Disabled: 1 Help: "Groups selected graphics" HelpTopic: "Group_on_a_view" Update: "Graphic.GroupUpdate" Label: "&Group" Click: "Graphic.Group" Shortcut: "Keys.Ctrl+G" ) (Choice.111 Disabled: 1 Help: "Ungroups selected graphics" HelpTopic: "Ungroup_on_a_view" Update: "Graphic.UngroupUpdate" Label: "&Ungroup" Click: "Graphic.Ungroup" Shortcut: "Keys.Ctrl+U" ) (Space.112 ) (Choice.113 Disabled: 1 Help: "Associates selected graphics with active themes" HelpTopic: "Attach_Graphics" Update: "View.AddGraphicsUpdate" Label: "A&ttach Graphics" Click: "View.AddGraphics" Shortcut: "Keys.None" ) (Choice.114 Disabled: 1 Help: "Removes association between graphics and active themes" HelpTopic: "Detach_Graphics" Update: "View.ClearGraphicsUpdate" Label: "&Detach Graphics" Click: "View.ClearGraphics" Shortcut: "Keys.None" ) (Space.115 ) (PMenu.116 InternalName: "Window" Child: 117 Child: 118 Child: 119 Child: 120 Child: 121 Child: 122 Child: 124 Child: 125 Label: "&Window" ) (Choice.117 Help: "Arranges windows as non-overlapping tiles" HelpTopic: "Tile" Label: "&Tile" Click: "Project.Tile" Shortcut: "Keys.None" ) (Choice.118 Help: "Arranges windows" HelpTopic: "Cascade" Label: "&Cascade" Click: "Project.Cascade" Shortcut: "Keys.None" ) (Choice.119 Help: "Arranges iconified windows" HelpTopic: "Arrange_Icons" Label: "&Arrange Icons" Click: "Project.ArrangeIcons" Shortcut: "Keys.None" ) (Space.120 ) (Choice.121 Help: "Shows the symbol window" HelpTopic: "Show_Symbol_Window" Label: "Show Symbol Window..." Click: "Project.ShowHideSymWin" Shortcut: "Keys.Ctrl+P" ) (Space.122 ObjectTag: 123 Update: "WindowMenuUpdate" ) (AVStr.123 S: "poly_edge.apr Common Edge View" ) (Choice.124 Help: "Activates poly_edge.apr" Label: "&1 poly_edge.apr" Click: "WindowActivate" Shortcut: "Keys.None" ) (Choice.125 Help: "Activates Common Edge View" Label: "&2 Common Edge View" Click: "WindowActivate" Shortcut: "Keys.None" ) (PMenu.126 InternalName: "Help" Child: 127 Child: 128 Child: 129 Child: 130 Label: "&Help" ) (Choice.127 Help: "Displays the dialog for browsing and searching ArcView's help system" HelpTopic: "Help_on_Help_Topics" Label: "Help &Topics..." Click: "Project.HelpTopics" Shortcut: "Keys.None" ) (Choice.128 Help: "Provides instructions for how to obtain help from ArcView" HelpTopic: "Help_on_How_to_Get_Help" Label: "&How to Get Help..." Click: "Project.HelpHelp" Shortcut: "Keys.None" ) (Space.129 ) (Choice.130 Help: "Provides information about ArcView" HelpTopic: "About" Label: "&About ArcView..." Click: "Project.About" Shortcut: "Keys.None" ) (ButnBar.131 Child: 132 Child: 134 Child: 135 Child: 137 Child: 138 Child: 140 Child: 142 Child: 144 Child: 145 Child: 147 Child: 149 Child: 151 Child: 152 Child: 154 Child: 156 Child: 158 Child: 160 Child: 162 Child: 164 Child: 165 Child: 167 Child: 169 Child: 170 Child: 172 Child: 173 Child: 174 Child: 176 Child: 177 ) (Butn.132 Help: "Save Project//Saves the current project" HelpTopic: "Save_Project" Icon: 133 Click: "Project.Save" ) (AVIcon.133 Name: "Save" Res: "Icons.Save" ) (Space.134 ) (Butn.135 Help: "Add Theme//Inserts themes into the view" HelpTopic: "Add_Theme" Icon: 136 Click: "View.Add" ) (AVIcon.136 Name: "AddTheme" Res: "Icons.AddTheme" ) (Space.137 ) (Butn.138 Disabled: 1 Help: "Theme Properties//Displays the dialog box to edit properties of the active theme" HelpTopic: "Theme_Properties" Update: "View.ActiveThemesUpdate" Icon: 139 Click: "View.ThemeProperties" ) (AVIcon.139 Name: "Props" Res: "Icons.Props" ) (Butn.140 Disabled: 1 Help: "Edit Legend//Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Icon: 141 Click: "View.EditLegendClick" ) (AVIcon.141 Name: "Legend" Res: "Icons.Legend" ) (Butn.142 Disabled: 1 Help: "Open Theme Table//Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Icon: 143 Click: "View.ShowTable" ) (AVIcon.143 Name: "Table" Res: "Icons.Table" ) (Space.144 ) (Butn.145 Disabled: 1 Help: "Find//Finds features in the active themes using the text you enter" HelpTopic: "Find" Update: "View.TabularThemesUpdate" Icon: 146 Click: "View.Find" ) (AVIcon.146 Name: "Find" Res: "Icons.Find" ) (Butn.147 Disabled: 1 Help: "Locate Address//Locates an address in the active, matchable theme" HelpTopic: "Locate_Address" Update: "View.LocateUpdate" Icon: 148 Click: "View.Locate" ) (AVIcon.148 Name: "AddMatch" Res: "Icons.AddMatch" ) (Butn.149 Disabled: 1 Help: "Query Builder//Displays the Query Builder to select features with a logical expression" HelpTopic: "Query_Builder" Update: "View.AttributeThemesUpdate" Icon: 150 Click: "View.Query" ) (AVIcon.150 Name: "QueryBuilder" Res: "Icons.QueryBuilder" ) (Space.151 ) (Butn.152 Disabled: 1 Help: "Zoom to Full Extent//Zooms to the extent of all themes" HelpTopic: "Zoom_to_Full_Extent" Update: "View.HasDataUpdate" Icon: 153 Click: "View.ZoomFullExtent" ) (AVIcon.153 Name: "ZoomView" Res: "Icons.ZoomView" ) (Butn.154 Disabled: 1 Help: "Zoom to Active Theme(s)//Zooms to the extent of active themes" HelpTopic: "Zoom_to_Active_Theme" Update: "View.ActiveThemesUpdate" Icon: 155 Click: "View.ZoomToThemes" ) (AVIcon.155 Name: "ZoomTheme" Res: "Icons.ZoomTheme" ) (Butn.156 Disabled: 1 Help: "Zoom to Selected//Zooms to the extent of the selected features" HelpTopic: "Zoom_to_Selected" Update: "View.SelectableThemesUpdate" Icon: 157 Click: "View.ZoomToSelected" ) (AVIcon.157 Name: "ZoomToSelected" Res: "Icons.ZoomToSelected" ) (Butn.158 Disabled: 1 Help: "Zoom In//Zooms in on the center of the display" HelpTopic: "Zoom_In" Update: "View.HasDataUpdate" Icon: 159 Click: "View.ZoomIn" ) (AVIcon.159 Name: "ZoomIn" Res: "Icons.ZoomIn" ) (Butn.160 Disabled: 1 Help: "Zoom Out//Zooms out from the center of the display" HelpTopic: "Zoom_Out" Update: "View.HasDataUpdate" Icon: 161 Click: "View.ZoomOut" ) (AVIcon.161 Name: "ZoomOut" Res: "Icons.ZoomOut" ) (Butn.162 Disabled: 1 Help: "Zoom to Previous Extent//Goes back to the previous extent you were viewing" HelpTopic: "Zoom_Previous" Update: "View.UndoZoomUpdate" Icon: 163 Click: "View.UndoZoom" ) (AVIcon.163 Name: "ZoomPrevious" Res: "Icons.ZoomPrevious" ) (Space.164 ) (Butn.165 Disabled: 1 Help: "Select Features Using Graphic//Selects features in active themes using selected graphics" HelpTopic: "Select_Features_Using_Graphic" Update: "View.SpatialSelectUpdate" Icon: 166 Click: "View.SpatialSelect" ) (AVIcon.166 Name: "SpatialSelect" Res: "Icons.SpatialSelect" ) (Butn.167 Disabled: 1 Help: "Clear Selected Features//Unselects the selected features of all active themes" HelpTopic: "Clear_Selected_Features" Update: "View.AttributeThemesUpdate" Icon: 168 Click: "View.ClearSelect" ) (AVIcon.168 Name: "SelectNone" Res: "Icons.SelectNone" ) (Space.169 ) (Butn.170 Help: "Help//Gets help about the next button, tool, or menu choice you click" HelpTopic: "Help_button" Icon: 171 Click: "Help.Tool" ) (AVIcon.171 Name: "HelpTool" Res: "Icons.HelpTool" ) (Space.172 ) (Space.173 ) (Butn.174 Help: "Measure Common Length//Measures the common length between two polygons." Icon: 175 Click: "a.CommonLine" ) (AVIcon.175 Name: "AutoComplete" Res: "Icons.AutoComplete" ) (Space.176 ) (Butn.177 Help: "Calculate Shared Edge Matrix//Calculates shared edge lengths between a selected set of polygons and produces matrix of ratios to perimeter." Icon: 178 Click: "a.EdgeMatrix" ) (AVIcon.178 Name: "SelectAll3" Res: "Icons.SelectAll3" ) (PopupSet.179 Child: 180 ) (Popup.180 Child: 181 Child: 182 Child: 183 Child: 184 Child: 185 Child: 186 Child: 187 Child: 188 Child: 189 Child: 190 Child: 191 Child: 192 Child: 193 Child: 194 Child: 195 Child: 196 Child: 197 Label: "Menu" ) (Choice.181 Disabled: 1 Invisible: 1 Help: "Deletes the last entered point on the line or polygon being drawn" Update: "View.DelLastPointUpdate" Label: "Delete Last Point" Click: "View.DeleteLastPoint" Shortcut: "Keys.None" ) (Choice.182 Help: "Undo the last edit to features in a theme" HelpTopic: "Undo_Feature_Edit_on_a_view" Update: "View.UndoEditUpdate" Label: "Undo Feature Edit" Click: "View.UndoEdit" Shortcut: "Keys.None" ) (Choice.183 Disabled: 1 Help: "Redo the last edit operation on a theme that was undone" Update: "View.RedoEditUpdate" Label: "Redo Feature Edit" Click: "View.RedoEdit" Shortcut: "Keys.None" ) (Space.184 ) (Choice.185 Help: "Turns general snapping on" Update: "View.ToggleGeneralSnapUpdate" Label: "Enable General Snapping" Click: "View.ToggleGeneralSnap" Shortcut: "Keys.None" ) (Choice.186 Help: "Turns interactive snapping on" Update: "View.ToggleInteractiveSnapUpdate" Label: "Enable Interactive Snapping" Click: "View.ToggleInteractiveSnap" Shortcut: "Keys.None" ) (Space.187 ) (Choice.188 Disabled: 1 Invisible: 1 Help: "Snaps the next entered point to the nearest vertex within the user tolerance" Update: "View.InteractiveSnapUpdate" Label: "Snap to Vertex" Click: "View.SnapToVertex" Shortcut: "Keys.None" ) (Choice.189 Disabled: 1 Invisible: 1 Help: "Snaps the next entered point to the nearest line segment" Update: "View.InteractiveSnapUpdate" Label: "Snap to Boundary" Click: "View.SnapToBoundary" Shortcut: "Keys.None" ) (Choice.190 Disabled: 1 Invisible: 1 Help: "Snaps the next entered point to the nearest node common to two or more features" Update: "View.InteractiveSnapUpdate" Label: "Snap to Intersection" Click: "View.SnapToIntersection" Shortcut: "Keys.None" ) (Choice.191 Disabled: 1 Invisible: 1 Help: "Snaps the next entered point to the nearest endpoint of an existing line" Update: "View.SnapToEndPointUpdate" Label: "Snap to Endpoint" Click: "View.SnapToEndPoint" Shortcut: "Keys.None" ) (Space.192 ) (Choice.193 Help: "Unselects the selected features in all active themes" Update: "View.AttributeThemesUpdate" Label: "Clear Selection" Click: "View.ClearSelect" Shortcut: "Keys.None" ) (Choice.194 Help: "Zooms in at point where you click to bring up popup menu" Update: "View.HasDataUpdate" Label: "Zoom In" Click: "View.PopupZoomIn" Shortcut: "Keys.None" ) (Choice.195 Help: "Zooms out from point where you click to bring up popup menu" Update: "View.HasDataUpdate" Label: "Zoom Out" Click: "View.PopupZoomOut" Shortcut: "Keys.None" ) (Choice.196 Help: "Zooms to the extent of the selected features" Update: "View.SelectableThemesUpdate" Label: "Zoom to Selected" Click: "View.ZoomToSelected" Shortcut: "Keys.None" ) (Choice.197 Help: "Centers display on point where you click to bring up popup" Update: "View.HasDataUpdate" Label: "Pan" Click: "View.PopupPan" Shortcut: "Keys.None" ) (ToolBar.198 Child: 199 Child: 201 Child: 203 Child: 205 Child: 207 Child: 209 Child: 211 Child: 213 Child: 215 Child: 217 Child: 219 Child: 221 Child: 223 Child: 242 ) (Tool.199 Disabled: 1 Help: "Identify//Provides information about a feature" HelpTopic: "Identify_tool" Update: "View.IdentifyUpdate" Icon: 200 Cursor: "Cursors.ID" Apply: "View.Identify" ) (AVIcon.200 Name: "ID" Res: "Icons.ID" ) (Tool.201 Disabled: 1 Help: "Pointer//Selects, moves, and resizes graphics" HelpTopic: "Pointer_tool" Update: "View.HasDataUpdate" Icon: 202 Cursor: "Cursors.Select" Apply: "View.Select" Click: "View.SelectTool" ) (AVIcon.202 Name: "Select" Res: "Icons.Select" ) (Tool.203 Disabled: 1 Help: "Vertex Edit//Adds, moves, and deletes vertices of features and graphics" HelpTopic: "Vertex_Edit_tool" Update: "View.SelectToEditUpdate" Icon: 204 Cursor: "Cursors.SelectEdit" Apply: "View.SelectToEdit" Click: "View.SelectToEditTool" ) (AVIcon.204 Name: "SelectEdit" Res: "Icons.SelectEdit" ) (Tool.205 Disabled: 1 Help: "Select Feature//Selects features in the active themes by pointing or dragging" HelpTopic: "Select_Feature_tool" Update: "View.SelectableThemesUpdate" Icon: 206 Cursor: "Cursors.Default" Apply: "View.SelectPoint" ) (AVIcon.206 Name: "FeatureSelect" Res: "Icons.FeatureSelect" ) (Tool.207 Disabled: 1 Help: "Zoom In//Zooms in at a point you click or zooms in on a rectangle you drag" HelpTopic: "Zoom_In_tool" Update: "View.HasDataUpdate" Icon: 208 Cursor: "Cursors.ZoomIn" Apply: "View.ZoomInTool" ) (AVIcon.208 Name: "ZoomInTool" Res: "Icons.ZoomInTool" ) (Tool.209 Disabled: 1 Help: "Zoom Out//Zooms out from a point you click or zooms out to include a rectangle you drag" HelpTopic: "Zoom_Out_tool" Update: "View.HasDataUpdate" Icon: 210 Cursor: "Cursors.ZoomOut" Apply: "View.ZoomOutTool" ) (AVIcon.210 Name: "ZoomOutTool" Res: "Icons.ZoomOutTool" ) (Tool.211 Disabled: 1 Help: "Pan//Drags the display in the direction you move the cursor" HelpTopic: "Pan_tool" Update: "View.HasDataUpdate" Icon: 212 Cursor: "Cursors.Pan" Apply: "View.Pan" ) (AVIcon.212 Name: "Pan" Res: "Icons.Pan" ) (Tool.213 Disabled: 1 Help: "Measure//Measures distance" HelpTopic: "Measure_tool" Update: "View.HasDataUpdate" Icon: 214 Cursor: "Cursors.Measure" Apply: "View.Measure" ) (AVIcon.214 Name: "Measure" Res: "Icons.Measure" ) (Tool.215 Disabled: 1 Help: "Hot Link//Follows a hot link in the active themes" HelpTopic: "Hot_Link_tool" Update: "View.HotLinkUpdate" Icon: 216 Cursor: "Cursors.Media" Apply: "View.HotLink" ) (AVIcon.216 Name: "Media" Res: "Icons.Media" ) (Tool.217 Disabled: 1 Help: "Area of Interest//Sets the view's Area Of Interest for library-based themes" HelpTopic: "Area_Of_Interest_tool" Update: "View.AOIToolUpdate" Icon: 218 Cursor: "Cursors.Default" Apply: "View.AOITool" ) (AVIcon.218 Name: "AOI" Res: "Icons.AOI" ) (Tool.219 Disabled: 1 Help: "Label//Labels a feature in the active theme with data from its table" HelpTopic: "Label_tool" Update: "View.LabelToolUpdate" Icon: 220 Cursor: "Cursors.Tag" Apply: "View.LabelTool" ) (AVIcon.220 Name: "Tag" Res: "Icons.Tag" ) (Tool.221 Help: "Text//Creates text on the display" HelpTopic: "Text_tool" Update: "View.GraphicToolUpdate" Icon: 222 Cursor: "Cursors.Text" Apply: "View.TextTool" Click: "SymWin.DisplayFontPanel" ) (AVIcon.222 Name: "Text" Res: "Icons.Text" ) (ToolMenu.223 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 224 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" Child: 225 Child: 226 Child: 228 Child: 230 Child: 232 Child: 234 Child: 236 Child: 238 Child: 240 ) (AVIcon.224 Name: "Point" Res: "Icons.Point" ) (Tool.225 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 224 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" ) (Tool.226 Help: "Draw Straight Line//Creates a line on the display" HelpTopic: "Draw_tool" Update: "View.GraphicToolUpdate" Icon: 227 Cursor: "Cursors.CrossHair" Apply: "View.LineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.227 Name: "SelectLine" Res: "Icons.SelectLine" ) (Tool.228 Help: "Draw Line//Creates a line with two or more points on the display" HelpTopic: "Draw_tool" Update: "View.PolyLineToolUpdate" Icon: 229 Cursor: "Cursors.CrossHair" Apply: "View.PolyLineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.229 Name: "Lines" Res: "Icons.Lines" ) (Tool.230 Help: "Draw Rectangle//Creates a rectangle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 231 Cursor: "Cursors.CrossHair" Apply: "View.RectTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.231 Name: "Rect" Res: "Icons.Rect" ) (Tool.232 Help: "Draw Circle//Creates a circle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 233 Cursor: "Cursors.CrossHair" Apply: "View.CircleTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.233 Name: "Disk" Res: "Icons.Disk" ) (Tool.234 Help: "Draw Polygon//Creates a polygon on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 235 Cursor: "Cursors.CrossHair" Apply: "View.PolyTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.235 Name: "Poly" Res: "Icons.Poly" ) (Tool.236 Disabled: 1 Help: "Draw Line to Split Feature//Creates a line to split line features" HelpTopic: "Draw_tool" Update: "View.SplitLineToolUpdate" Icon: 237 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.237 Name: "SplitLine" Res: "Icons.SplitLine" ) (Tool.238 Disabled: 1 Help: "Draw Line to Split Polygon//Creates a line to split polygon features" HelpTopic: "Draw_tool" Update: "View.SplitPolyToolUpdate" Icon: 239 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.239 Name: "SplitPoly" Res: "Icons.SplitPoly" ) (Tool.240 Disabled: 1 Help: "Draw Line to Append Polygon//Appends a new polygon adjacent to other polygons" HelpTopic: "Draw_tool" Update: "View.AutoCompleteUpdate" Icon: 241 Cursor: "Cursors.CrossHair" Apply: "View.AutoCompleteTool" ) (AVIcon.241 Name: "AutoComplete" Res: "Icons.AutoComplete" ) (ToolMenu.242 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 243 Cursor: "Cursors.Default" Apply: "View.SnapTool" Child: 244 Child: 245 ) (AVIcon.243 Name: "SnapTool" Res: "Icons.SnapTool" ) (Tool.244 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 243 Cursor: "Cursors.Default" Apply: "View.SnapTool" ) (Tool.245 Disabled: 1 Invisible: 1 Help: "Snap//Sets the interactive snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.InteractiveSnapToolUpdate" Icon: 246 Cursor: "Cursors.Default" Apply: "View.InteractiveSnapTool" ) (AVIcon.246 Name: "SnapFeatureTool" Res: "Icons.SnapFeatureTool" ) (AVIcon.247 Name: "Icon" Res: "View.Icon" ) (FN.786 Path: "$HOME" ) (TClr.787 Red: 0xffff Green: 0xffff ) (AVStr.788 S: "View" ) (AVStr.789 S: "Table" ) (AVStr.790 S: "Chart" ) (AVStr.791 S: "Layout" ) (AVStr.792 S: "Script" ) (AVStr.793 S: "Project" ) (AVStr.794 S: "Appl" )