/3.0 (ODB.1 FirstRootClassName: "Project" Roots: 2 Version: 30 ) (Project.2 Name: "utilitys.apr" CreationDate: "Sunday, November 16, 1997 04:15:37" GUIName: "Project" Win: 3 CSMgr: 4 VisGUIWidth: 70 Doc: 5 Doc: 8 Buttons: 11 Buttons: 12 Buttons: 13 Scripts: 14 GUI: 15 WorkDir: 771 WinX: 11 WinY: 3 WinW: 623 WinH: 473 SerialNumber: "709891118406" SelColor: 772 GUINames: 773 GUINames: 774 GUINames: 775 GUINames: 776 GUINames: 777 GUINames: 778 GUINames: 779 ) (DocWin.3 Owner: 2 Open: 1 X: 5 Y: 5 W: 243 H: 318 ) (CSMgr.4 ) (SEd.5 Name: "ClipTheme" CreationDate: "Sunday, November 16, 1997 04:15:42" GUIName: "Script" Win: 6 CSMgr: 7 Source: "' Name: View.ClipThemeOnTheme\n'\n' Title: Clips one line or polygon theme using another polygon theme\n'\n' Topics: GeoData\n'\n' Description: Clips one theme by a selected polygon theme, returning\n' a new shapefile with the clipped features and their attributes.\n'\n' Requires: Should have a update script to enable only if 2 + themes\n' are in the view and only if at least one is a polygon theme.\n'\n' Self: \n'\n' Returns: New shapefile of clipped features.\n'\n' Version: ArcView 3.0a\n'\n\ntheView = av.GetActiveDo c\ntheActThemes = theView.GetThemes\nif (nil = theActThemes) then exit end\nif (theActThemes.Count < 2) then \n MsgBox.Error(\"You must have at least 2 themes in the View\",\"Error\")\n exit\nend\n\nthemelist=theView.GetThemes\n\nSRCTheme=MsgBox.ChoiceAsString(themelist,\"Which theme is the intersect theme?\",\n \"Clip Theme: Line or Polygon theme to be clipped\")\nif (SRCTheme = NIL) then exit end\nclsn = SRCTheme.GetFTab.GetShapeClass.GetClassName\nif ((clsn = \"Point\") or (clsn = \"MultiPoint\")) then\n MsgBox.Info(\"You can o nly clip line and polygon themes.\",\"Clip Theme\")\n exit\nend\n\npolylist = List.Make\nfor each atheme in themelist\n if (atheme.GetFTab.FindField(\"Shape\").GetType = #FIELD_SHAPEPOLY) then\n polylist.Add(atheme)\n end\nend\n\ninterTheme=Msgbox.ChoiceAsString(polylist,\"Which polygon theme is the clipping theme?\",\n \"Clip Theme: Theme to clip with\")\nif (interTheme = NIL) then exit end\n\n\n' Specify the output shapefile...\noutFName = av.GetProject.MakeFileName(\"theme\", \"shp\")\noutFName = FileDialog.Put(outFName, \"*.shp\", \"Output Shapefile\")\nif (outFName = Nil) then\n exit\nend\n\nshapeType = SRCTheme.GetFTab.FindField(\"Shape\").GetType\n\nif (shapeType = #FIELD_SHAPELINE) then \n outClass = POLYLINE\nelseif (shapeType = #FIELD_SHAPEMULTIPOINT) then\n outClass = MULTIPOINT\nelseif (shapeType = #FIELD_SHAPEPOINT) then\n outClass = POINT\nelseif (shapeType = #FIELD_SHAPEPOLY) then\n outClass = POLYGON\nelse\n MsgBox.Error(\"Invalid shape field type.\", \"Merge Themes\")\n exit\nend\n\n\n'-------------------------------------------------------\n' Set the variables\n'-------------------------------------------------------\n\nOutputFTab = FTab.MakeNew( outFName, outClass )\n\nSRCfields = List.Make\nInterFields = List.Make\n\nfor each f in SRCTheme.GetFTab.GetFields\n if (f.GetName = \"Shape\") then\n continue\n else \n fCopy = f.Clone\n SRCfields.Add(fCopy)\n end\nend\n\n\n'-------------------------------------------------------\n'add the fields to the output file\n'-------------------------------------------------------\n\nif (SRCFields.Count > 0) then\n OutputFT ab.AddFields( SRCFields )\nend\n\noutshpfld = OutputFtab.FindField(\"Shape\")\n\nTheme1 = SRCTheme\nftab1=Theme1.GetFTab\nshpfld1=ftab1.FindField(\"Shape\")\ntherecs1 = ftab1.GetSelection\ntheoldsel = ftab1.GetSelection.Clone\n\nif (therecs1.Count=0) then\n therecs1=ftab1\nend\n\nTheme2 = InterTheme\nftab2=Theme2.GetFtab\nshpfld2=ftab2.FindField(\"Shape\")\ntherecs2 = ftab2.GetSelection\n\nif (therecs2.Count=0) then\n therecs2=ftab2.GetSelection.SetAll\n ftab2.UpdateSelection\n therecs2 = ftab2.GetSelection\nend\n\nOutputFtab.SetEdita ble(False)\nOutputFtab.SetEditable(True)\n\ntotalshape=ftab2.ReturnValue(shpfld2, therecs2.GetNextSet(-1))\n\nfor each apshape in therecs2\n totalshape = totalshape.ReturnUnion(ftab2.ReturnValue(shpfld2, apshape))\nend\n\n\n'-------------------------------------------------------\n'Start processing each record in the selected overlay polys\n'-------------------------------------------------------\n\n'Get the polygon shape and select all records within that shape\ntheSRCshape = totalshape\nif (theView.GetProjection.isNull) then\n Theme1.SelectbyShapes({theSRCshape}, #VTAB_SELTYPE_NEW)\nelse\n pshp=theSRCShape.ReturnProjected(theView.GetProjection)\n Theme1.SelectbyShapes({pshp}, #VTAB_SELTYPE_NEW)\nend\n\n'For each selected record \n\nrecordCount = 0 \nfor each Selrec in ftab1.GetSelection\n recordCount = RecordCount +1\n av.ShowMsg(\"Splitting Shapes...\")\n av.SetStatus((recordCount / ftab1.GetSelection.Count) * 100)\n\n 'Get the shape of the record\n SelectedShape = ftab1.ReturnValue(shpfld1,Selrec)\n\n 'If the output is a line\n if (outshpfld.getType = #FIELD_SHAPELINE) then\n \n 'If the line is wholly within the polygon (no intersection) then\n if (SelectedShape.IsContainedIn(theSRCShape)) then\n aLineshp = SelectedShape\n 'Else split the line using the polygon\n else \n aLineShp = SelectedShape.LineIntersection(theSRCshape)\n end\n 'Add the new record \n theoutrec=outputftab.AddRecord\n 'Set the shape value\n outputFtab.SetValue(outshpfld, theoutrec, alineshp)\n 'Set the field values \n for e ach afield in SRCfields\n oldfield=ftab1.FindField(afield.GetName)\n ' Due to field name renaming between INFO and dBASE,\n ' some of the fields may not be found. In those cases,\n ' leave the value blank.\n if (oldfield<>nil) then\n oldvalue=ftab1.ReturnValue(oldfield, selrec)\n outputftab.SetValue(afield, theoutrec, oldvalue)\n end\n end\n\n 'This enters into the polygon loop\n\n else\n shpIntersect = SelectedShape.ReturnIntersection(theSRCshape) \n if (shpintersect. IsEmpty) then \n continue \n end\n theoutrec=outputftab.AddRecord\n outputFtab.SetValue(outshpfld,theoutrec,shpIntersect)\n \n for each afield in SRCfields\n oldfield=ftab1.FindField(afield.GetName)\n ' Due to field name renaming between INFO and dBASE,\n ' some of the fields may not be found. In those cases,\n ' leave the value blank.\n if (oldfield<>nil) then\n oldvalue=ftab1.ReturnValue(oldfield, selrec)\n outputftab.SetValue(afield, theoutrec, oldvalue)\n end\n end\n\n end\n av.PurgeObjects\nend \n\n'Set editing OFF\n\nOutputFTab.SetEditable(false)\n\ntheView.GetGraphics.EndBatch\n\nftab1.SetSelection(theoldsel)\nftab1.UpdateSelection\n\nif (OutputFTab.HasError) then\n MsgBox.Error(\"The out FTab has an error\",\"\")\n exit\nend\n\nif (MsgBox.YesNo(\"Add shapefile as theme to a view?\",\n \"Clip Theme\", true).Not) then \n exit \nend\n\n' Create a list of views and allow the user to choose which view to\n' add the new theme to... \n\nviewList = {}\nfor each d in av.GetProject.GetDocs\n if (d.Is(View)) then\n viewList.Add( d )\n end\nend\n\n' Include a choice for a new view...\nviewList.Add(\"\")\n\naddToView = MsgBox.ListAsString( viewList,\"Add Theme to:\", \"Clip Theme\" ) \n\n' Get the specified view, make the theme, and add it...\nif (addToView <> nil) then\n\n if (addToView = \"\") then\n addToView = View.Make\n addToView.GetWin.Open\n end\n\n mergeTheme = FTheme.Make( OutputFTab )\n addToView.AddTheme( mergeTheme )\n\n ' Bring the View to the front...\n addToView.GetWin.Activ ate\nend\n\nav.clearmsg\n" ) (DocWin.6 Owner: 5 X: 20 Y: 20 W: 363 H: 246 ) (CSMgr.7 ) (SEd.8 Name: "MergeThemes" CreationDate: "Sunday, November 16, 1997 04:16:12" GUIName: "Script" Win: 9 CSMgr: 10 Source: "' Name: View.MergeThemes\n' \n' Title: Merges two feature themes\n'\n' Topics: GeoData\n'\n' Description: Merges the selected themes into a single theme. A new\n' shapefile is created which combines the shapes and attributes of the\n' active themes. The themes to be merged should have the same set of\n' attributes (fields). Only the fields from the first active theme are\n' preserved in the output theme.\n'\n' Requires: At least two themes of the same feature type must be in the\n' active view. \n'\n' Self: \n'\n' Returns: \n\ntheView = av.GetActiveDoc\ntheThemes = theView.GetThemes\n\nif (theThemes.Count < 2) then\n MsgBox.Error( \"Must have at least two themes in a view to merge.\",\"\")\n exit\nend\n\n\n' Allow the user to choose themes from the view to be merged...\n\nthemesToMerge = List.Make\n \nwhile (true)\n t = MsgBox.Choice( theThemes, \"Choose themes in view to merge:\"+NL+\n \"(Click Cancel to end):\", \"Merge Themes\" ) \n if (t <> Nil) then\n themesToMerge.Add(t)\n else\n break\n end\nend\n\nif ((themesToMerge = Nil) or (themesToMerge.Count < 2)) then\n MsgBox.Error(\"Not enough themes to merge.\", \"\")\n exit\nend\n\n \n' Themes must have matching shape types for merging. Using the first\n' active theme verify that this is the case...\n \ncheckType = themesToMerge.Get(0).GetFtab.FindField(\"Shape\").GetType\n \nfor each i in 1 .. (themesToMerge.Count - 1)\n t = themesToMerge.Get(i)\n if (checkType <> t.GetFTab.FindField(\"Shape\").GetType) then\n MsgBox.Error(\"Theme feature type mismatch - Unable to merge.\",\"\")\n exit\n end\nend\n \n \n' Specify the output shapefile...\n \noutFName = av.GetProject.MakeFileName(\"theme\", \"shp\")\noutFName = FileDialog.Put(outFName, \"*.shp\", \"Output Merged Shapefile\")\nif (outFName = Nil) then\n exit\nend\n \n\n' Create the list of fields used for the output theme. The fields\n' are taken from the first active theme only, it is assumed that \n' other themes have an identical set of fields. If this is not the\n' case the themes will still be merged, however fields not found in\n' other themes will be empty...\n\nfieldLi st = List.Make\n\nfor each f in themesToMerge.Get(0).GetFTab.GetFields\n if (f.GetName = \"Shape\") then\n continue\n else \n fCopy = f.Clone\n fieldList.Add(fCopy)\n end\nend\n\n\n' Get the class of new FTab to create, create the new FTab and \n' add fields that we've gathered from the input themes....\n\nshapeType = themesToMerge.Get(0).GetFTab.FindField(\"Shape\").GetType\n\nif (shapeType = #FIELD_SHAPELINE) then \n outClass = POLYLINE\n\nelseif (shapeType = #FIELD_SHAPEMULTIPOINT) then\n outClass = MULTIPOINT\n\nels eif (shapeType = #FIELD_SHAPEPOINT) then\n outClass = POINT\n\nelseif (shapeType = #FIELD_SHAPEPOLY) then\n outClass = POLYGON\n\nelse\n MsgBox.Error(\"Invalid shape field type.\", \"Merge Themes\")\n exit\n\nend\n\nmergeFTab = FTab.MakeNew( outFName, outClass )\n\nif (fieldList.Count > 0) then\n mergeFTab.AddFields( fieldList )\nend\n\n\n' Populate the new FTab from the FTabs of the input themes...\n\nfor each t in themesToMerge\n\n av.ShowMsg( \"Merging\"++t.GetName )\n\n inFTab = t.GetFTab\n\n if (inFTab.GetSelection.Count = 0) then\n theRecordsToMerge = inFTab\n numRecs = inFTab.GetNumRecords\n else\n theRecordsToMerge = inFTab.GetSelection\n numRecs = theRecordsToMerge.Count\n end\n\n for each rec in theRecordsToMerge \n\n av.SetStatus( (rec / numRecs) * 100 )\n\n newRec = mergeFTab.AddRecord\n\n inField = inFTab.FindField( \"Shape\" )\n outField = mergeFTab.FindField( \"Shape\" )\n mergeFTab.SetValue( outField, newrec, inFTab.ReturnValue( inField, rec ))\n\n if (fieldList.Count > 0) then\n for each f in field List \n fName = f.GetName \n inField = inFTab.FindField( fName )\n\n ' Skip field if not found in inFTab...\n if ( inField <> Nil ) then \n outField = mergeFTab.FindField( fName )\n aValue = inFTab.ReturnValue( inField, rec )\n mergeFTab.SetValue( outField, newRec, aValue )\n end\n\n end ' for each f\n end ' if count \n end ' for each rec\nend ' for each t\n\nav.ClearMsg\nav.ClearStatus\n\n\nif (MsgBox.YesNo(\"Add shapefile as theme to a view ?\",\n \"Merge Themes\", true).Not) then \n exit \nend\n\n\n' Create a list of views and allow the user to choose which view to\n' add the new theme to... \n\nviewList = {}\nfor each d in av.GetProject.GetDocs\n if (d.Is(View)) then\n viewList.Add( d )\n end\nend\n \n' Include a choice for a new view...\nviewList.Add(\"\")\n \naddToView = MsgBox.ListAsString( viewList,\"Add Theme to:\", \"Merge Themes\" ) \n \n\n' Get the specified view, make the theme, and add it...\nif (addToView <> nil) then\n\n if (addToView = \"\") then\n addToView = View.Make\n addToView.GetWin.Open\n end\n \n mergeTheme = FTheme.Make( mergeFTab )\n addToView.AddTheme( mergeTheme )\n\n ' Bring the View to the front...\n addToView.GetWin.Activate\nend\n\n" ) (DocWin.9 Owner: 8 X: 35 Y: 35 W: 363 H: 246 ) (CSMgr.10 ) (LButn.11 HelpTopic: "New_button" Update: "Doc.NewUpdate" Label: "&New" Click: "View.New" ) (LButn.12 Disabled: 1 HelpTopic: "Open_button" Update: "Doc.OpenUpdate" Label: "&Open" Click: "Doc.Open" ) (LButn.13 Disabled: 1 HelpTopic: "Print_button" Update: "Doc.ActionUpdate" Label: "P&rint" Click: "Doc.Action" ) (NameDict.14 ) (DocGUI.15 Name: "View" Type: "View" Modified: 1 Visible: 1 MenuBar: 16 ButnBar: 123 Popups: 164 ToolBar: 183 NewScript: "View.New" OpenScript: "Doc.Open" ActionScript: "Doc.Action" NewUpdateScript: "Doc.NewUpdate" OpenUpdateScript: "Doc.OpenUpdate" ActionUpdateScript: "Doc.ActionUpdate" Title: "Views" Icon: 232 ) (MenuBar.16 Child: 17 Child: 29 Child: 51 Child: 72 Child: 94 Child: 108 Child: 118 ) (PMenu.17 InternalName: "File" Child: 18 Child: 19 Child: 20 Child: 21 Child: 22 Child: 23 Child: 24 Child: 25 Child: 26 Child: 27 Child: 28 Label: "&File" ) (Choice.18 Help: "Closes the active component" HelpTopic: "Close" Label: "&Close" Click: "Project.CloseDoc" Shortcut: "Keys.None" ) (Choice.19 Help: "Closes all components" HelpTopic: "Close_All" Label: "Close &All" Click: "Project.CloseAll" Shortcut: "Keys.None" ) (Space.20 ) (Choice.21 Help: "Allows you to specify the current working directory" HelpTopic: "Set_Working_Directory" Label: "Set &Working Directory..." Click: "Project.SetProjectWorkDir" Shortcut: "Keys.None" ) (Choice.22 Help: "Saves the current project" HelpTopic: "Save_Project" Label: "&Save Project" Click: "Project.Save" Shortcut: "Keys.Ctrl+S" ) (Space.23 ) (Choice.24 Help: "Prints the view" HelpTopic: "Print" Label: "&Print..." Click: "View.Print" Shortcut: "Keys.None" ) (Choice.25 Help: "Edits the printer and the printing options" HelpTopic: "Print_Setup" Label: "P&rint Setup..." Click: "Project.PrintSetup" Shortcut: "Keys.None" ) (Choice.26 Help: "Exports the view" HelpTopic: "Export" Update: "View.HasThemesUpdate" Label: "&Export..." Click: "View.ExportDisp" Shortcut: "Keys.None" ) (Space.27 ) (Choice.28 Help: "Exits ArcView" HelpTopic: "Exit" Label: "E&xit" Click: "Project.Exit" Shortcut: "Keys.None" ) (PMenu.29 InternalName: "Edit" Child: 30 Child: 31 Child: 32 Child: 33 Child: 34 Child: 35 Child: 36 Child: 37 Child: 38 Child: 39 Child: 40 Child: 41 Child: 42 Child: 43 Child: 44 Child: 45 Child: 46 Child: 47 Child: 48 Child: 49 Child: 50 Label: "&Edit" ) (Choice.30 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.31 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.32 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.33 ) (Choice.34 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.35 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.36 ) (Choice.37 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.38 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.39 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.40 ) (Choice.41 Disabled: 1 Help: "Combines the selected polygons" HelpTopic: "Combine_Graphics" Update: "View.CombineUpdate" Label: "Com&bine Graphics" Click: "View.CombineGraphics" Shortcut: "Keys.None" ) (Choice.42 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.43 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.44 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.45 ) (Choice.46 Disabled: 1 Help: "Inserts the contents of the clipboard" HelpTopic: "Paste" Update: "View.PasteUpdate" Label: "&Paste" Click: "View.Paste" Shortcut: "Keys.Ctrl+V" ) (Space.47 ) (Choice.48 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" ) (Choice.49 Label: "Merge Themes" Click: "MergeThemes" Shortcut: "Keys.None" ) (Choice.50 Label: "Clip Theme" Click: "ClipTheme" Shortcut: "Keys.None" ) (PMenu.51 InternalName: "View" Child: 52 Child: 53 Child: 54 Child: 55 Child: 56 Child: 57 Child: 58 Child: 59 Child: 60 Child: 61 Child: 62 Child: 63 Child: 64 Child: 65 Child: 66 Child: 67 Child: 68 Child: 69 Child: 70 Child: 71 Label: "&View" ) (Choice.52 Help: "Displays the dialog box to edit properties of the view" HelpTopic: "View_Properties" Label: "&Properties..." Click: "View.Properties" Shortcut: "Keys.None" ) (Space.53 ) (Choice.54 Help: "Inserts themes into the view" HelpTopic: "Add_Theme" Label: "&Add Theme..." Click: "View.Add" Shortcut: "Keys.Ctrl+T" ) (Choice.55 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.56 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.57 Help: "Creates a new theme" HelpTopic: "New_Theme" Label: "&New Theme..." Click: "View.NewTheme" Shortcut: "Keys.None" ) (Choice.58 Help: "Makes all themes visible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "&Themes On" Click: "View.ThemesOn" Shortcut: "Keys.None" ) (Choice.59 Help: "Makes all themes invisible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "T&hemes Off" Click: "View.ThemesOff" Shortcut: "Keys.Esc" ) (Space.60 ) (Choice.61 Help: "Create a Layout from the View" HelpTopic: "Layout_menu_choice" Update: "View.HasThemesUpdate" Label: "La&yout..." Click: "View.Layout" Shortcut: "Keys.None" ) (Space.62 ) (Choice.63 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.64 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.65 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.66 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.67 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.68 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.69 ) (Choice.70 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.71 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.72 InternalName: "Theme" Child: 73 Child: 74 Child: 75 Child: 76 Child: 77 Child: 78 Child: 79 Child: 80 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 Label: "&Theme" ) (Choice.73 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.74 ) (Choice.75 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.76 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.77 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.78 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.79 ) (Choice.80 Help: "Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Label: "Edit &Legend..." Click: "View.EditLegendClick" Shortcut: "Keys.None" ) (Choice.81 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.82 ) (Choice.83 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.84 ) (Choice.85 Help: "Labels features in active, visible themes" HelpTopic: "Auto_label" Update: "View.LabelThemesUpdate" Label: "&Auto-label..." Click: "View.LabelThemes" Shortcut: "Keys.Ctrl+L" ) (Choice.86 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.87 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.88 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.89 ) (Choice.90 Help: "Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Label: "&Table..." Click: "View.ShowTable" Shortcut: "Keys.None" ) (Choice.91 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.92 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.93 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.94 InternalName: "Graphics" Child: 95 Child: 96 Child: 97 Child: 98 Child: 99 Child: 100 Child: 101 Child: 102 Child: 103 Child: 104 Child: 105 Child: 106 Child: 107 Label: "&Graphics" ) (Choice.95 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.96 ) (Choice.97 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.98 Disabled: 1 Help: "Aligns the selected graphics" HelpTopic: "Align" Update: "Graphic.HasSelectionUpdate" Label: "&Align..." Click: "Graphic.Align" Shortcut: "Keys.Ctrl+A" ) (Space.99 ) (Choice.100 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.101 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.102 Disabled: 1 Help: "Groups selected graphics" HelpTopic: "Group_on_a_view" Update: "Graphic.GroupUpdate" Label: "&Group" Click: "Graphic.Group" Shortcut: "Keys.Ctrl+G" ) (Choice.103 Disabled: 1 Help: "Ungroups selected graphics" HelpTopic: "Ungroup_on_a_view" Update: "Graphic.UngroupUpdate" Label: "&Ungroup" Click: "Graphic.Ungroup" Shortcut: "Keys.Ctrl+U" ) (Space.104 ) (Choice.105 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.106 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.107 ) (PMenu.108 InternalName: "Window" Child: 109 Child: 110 Child: 111 Child: 112 Child: 113 Child: 114 Child: 116 Child: 117 Label: "&Window" ) (Choice.109 Help: "Arranges windows as non-overlapping tiles" HelpTopic: "Tile" Label: "&Tile" Click: "Project.Tile" Shortcut: "Keys.None" ) (Choice.110 Help: "Arranges windows" HelpTopic: "Cascade" Label: "&Cascade" Click: "Project.Cascade" Shortcut: "Keys.None" ) (Choice.111 Help: "Arranges iconified windows" HelpTopic: "Arrange_Icons" Label: "&Arrange Icons" Click: "Project.ArrangeIcons" Shortcut: "Keys.None" ) (Space.112 ) (Choice.113 Help: "Shows the symbol window" HelpTopic: "Show_Symbol_Window" Label: "Show Symbol Window..." Click: "Project.ShowHideSymWin" Shortcut: "Keys.Ctrl+P" ) (Space.114 ObjectTag: 115 Update: "WindowMenuUpdate" ) (AVStr.115 S: "utilitys.apr View1" ) (Choice.116 Help: "Activates utilitys.apr" Label: "&1 utilitys.apr" Click: "WindowActivate" Shortcut: "Keys.None" ) (Choice.117 Help: "Activates View1" Label: "&2 View1" Click: "WindowActivate" Shortcut: "Keys.None" ) (PMenu.118 InternalName: "Help" Child: 119 Child: 120 Child: 121 Child: 122 Label: "&Help" ) (Choice.119 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.120 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.121 ) (Choice.122 Help: "Provides information about ArcView" HelpTopic: "About" Label: "&About ArcView..." Click: "Project.About" Shortcut: "Keys.None" ) (ButnBar.123 Child: 124 Child: 126 Child: 127 Child: 129 Child: 130 Child: 132 Child: 134 Child: 136 Child: 137 Child: 139 Child: 141 Child: 143 Child: 144 Child: 146 Child: 148 Child: 150 Child: 152 Child: 154 Child: 156 Child: 157 Child: 159 Child: 161 Child: 162 ) (Butn.124 Help: "Save Project//Saves the current project" HelpTopic: "Save_Project" Icon: 125 Click: "Project.Save" ) (AVIcon.125 Name: "Save" Res: "Icons.Save" ) (Space.126 ) (Butn.127 Help: "Add Theme//Inserts themes into the view" HelpTopic: "Add_Theme" Icon: 128 Click: "View.Add" ) (AVIcon.128 Name: "AddTheme" Res: "Icons.AddTheme" ) (Space.129 ) (Butn.130 Help: "Theme Properties//Displays the dialog box to edit properties of the active theme" HelpTopic: "Theme_Properties" Update: "View.ActiveThemesUpdate" Icon: 131 Click: "View.ThemeProperties" ) (AVIcon.131 Name: "Props" Res: "Icons.Props" ) (Butn.132 Help: "Edit Legend//Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Icon: 133 Click: "View.EditLegendClick" ) (AVIcon.133 Name: "Legend" Res: "Icons.Legend" ) (Butn.134 Help: "Open Theme Table//Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Icon: 135 Click: "View.ShowTable" ) (AVIcon.135 Name: "Table" Res: "Icons.Table" ) (Space.136 ) (Butn.137 Help: "Find//Finds features in the active themes using the text you enter" HelpTopic: "Find" Update: "View.TabularThemesUpdate" Icon: 138 Click: "View.Find" ) (AVIcon.138 Name: "Find" Res: "Icons.Find" ) (Butn.139 Disabled: 1 Help: "Locate Address//Locates an address in the active, matchable theme" HelpTopic: "Locate_Address" Update: "View.LocateUpdate" Icon: 140 Click: "View.Locate" ) (AVIcon.140 Name: "AddMatch" Res: "Icons.AddMatch" ) (Butn.141 Help: "Query Builder//Displays the Query Builder to select features with a logical expression" HelpTopic: "Query_Builder" Update: "View.AttributeThemesUpdate" Icon: 142 Click: "View.Query" ) (AVIcon.142 Name: "QueryBuilder" Res: "Icons.QueryBuilder" ) (Space.143 ) (Butn.144 Help: "Zoom to Full Extent//Zooms to the extent of all themes" HelpTopic: "Zoom_to_Full_Extent" Update: "View.HasDataUpdate" Icon: 145 Click: "View.ZoomFullExtent" ) (AVIcon.145 Name: "ZoomView" Res: "Icons.ZoomView" ) (Butn.146 Help: "Zoom to Active Theme(s)//Zooms to the extent of active themes" HelpTopic: "Zoom_to_Active_Theme" Update: "View.ActiveThemesUpdate" Icon: 147 Click: "View.ZoomToThemes" ) (AVIcon.147 Name: "ZoomTheme" Res: "Icons.ZoomTheme" ) (Butn.148 Help: "Zoom to Selected//Zooms to the extent of the selected features" HelpTopic: "Zoom_to_Selected" Update: "View.SelectableThemesUpdate" Icon: 149 Click: "View.ZoomToSelected" ) (AVIcon.149 Name: "ZoomToSelected" Res: "Icons.ZoomToSelected" ) (Butn.150 Help: "Zoom In//Zooms in on the center of the display" HelpTopic: "Zoom_In" Update: "View.HasDataUpdate" Icon: 151 Click: "View.ZoomIn" ) (AVIcon.151 Name: "ZoomIn" Res: "Icons.ZoomIn" ) (Butn.152 Help: "Zoom Out//Zooms out from the center of the display" HelpTopic: "Zoom_Out" Update: "View.HasDataUpdate" Icon: 153 Click: "View.ZoomOut" ) (AVIcon.153 Name: "ZoomOut" Res: "Icons.ZoomOut" ) (Butn.154 Help: "Zoom to Previous Extent//Goes back to the previous extent you were viewing" HelpTopic: "Zoom_Previous" Update: "View.UndoZoomUpdate" Icon: 155 Click: "View.UndoZoom" ) (AVIcon.155 Name: "ZoomPrevious" Res: "Icons.ZoomPrevious" ) (Space.156 ) (Butn.157 Disabled: 1 Help: "Select Features Using Graphic//Selects features in active themes using selected graphics" HelpTopic: "Select_Features_Using_Graphic" Update: "View.SpatialSelectUpdate" Icon: 158 Click: "View.SpatialSelect" ) (AVIcon.158 Name: "SpatialSelect" Res: "Icons.SpatialSelect" ) (Butn.159 Help: "Clear Selected Features//Unselects the selected features of all active themes" HelpTopic: "Clear_Selected_Features" Update: "View.AttributeThemesUpdate" Icon: 160 Click: "View.ClearSelect" ) (AVIcon.160 Name: "SelectNone" Res: "Icons.SelectNone" ) (Space.161 ) (Butn.162 Help: "Help//Gets help about the next button, tool, or menu choice you click" HelpTopic: "Help_button" Icon: 163 Click: "Help.Tool" ) (AVIcon.163 Name: "HelpTool" Res: "Icons.HelpTool" ) (PopupSet.164 Child: 165 ) (Popup.165 Child: 166 Child: 167 Child: 168 Child: 169 Child: 170 Child: 171 Child: 172 Child: 173 Child: 174 Child: 175 Child: 176 Child: 177 Child: 178 Child: 179 Child: 180 Child: 181 Child: 182 Label: "Menu" ) (Choice.166 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.167 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.168 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.169 ) (Choice.170 Help: "Turns general snapping on" Update: "View.ToggleGeneralSnapUpdate" Label: "Enable General Snapping" Click: "View.ToggleGeneralSnap" Shortcut: "Keys.None" ) (Choice.171 Help: "Turns interactive snapping on" Update: "View.ToggleInteractiveSnapUpdate" Label: "Enable Interactive Snapping" Click: "View.ToggleInteractiveSnap" Shortcut: "Keys.None" ) (Space.172 ) (Choice.173 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.174 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.175 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.176 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.177 ) (Choice.178 Help: "Unselects the selected features in all active themes" Update: "View.AttributeThemesUpdate" Label: "Clear Selection" Click: "View.ClearSelect" Shortcut: "Keys.None" ) (Choice.179 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.180 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.181 Help: "Zooms to the extent of the selected features" Update: "View.SelectableThemesUpdate" Label: "Zoom to Selected" Click: "View.ZoomToSelected" Shortcut: "Keys.None" ) (Choice.182 Help: "Centers display on point where you click to bring up popup" Update: "View.HasDataUpdate" Label: "Pan" Click: "View.PopupPan" Shortcut: "Keys.None" ) (ToolBar.183 Child: 184 Child: 186 Child: 188 Child: 190 Child: 192 Child: 194 Child: 196 Child: 198 Child: 200 Child: 202 Child: 204 Child: 206 Child: 208 Child: 227 ) (Tool.184 Help: "Identify//Provides information about a feature" HelpTopic: "Identify_tool" Update: "View.IdentifyUpdate" Icon: 185 Cursor: "Cursors.ID" Apply: "View.Identify" ) (AVIcon.185 Name: "ID" Res: "Icons.ID" ) (Tool.186 Help: "Pointer//Selects, moves, and resizes graphics" HelpTopic: "Pointer_tool" Update: "View.HasDataUpdate" Icon: 187 Cursor: "Cursors.Select" Apply: "View.Select" Click: "View.SelectTool" ) (AVIcon.187 Name: "Select" Res: "Icons.Select" ) (Tool.188 Disabled: 1 Help: "Vertex Edit//Adds, moves, and deletes vertices of features and graphics" HelpTopic: "Vertex_Edit_tool" Update: "View.SelectToEditUpdate" Icon: 189 Cursor: "Cursors.SelectEdit" Apply: "View.SelectToEdit" Click: "View.SelectToEditTool" ) (AVIcon.189 Name: "SelectEdit" Res: "Icons.SelectEdit" ) (Tool.190 Help: "Select Feature//Selects features in the active themes by pointing or dragging" HelpTopic: "Select_Feature_tool" Update: "View.SelectableThemesUpdate" Icon: 191 Cursor: "Cursors.Default" Apply: "View.SelectPoint" ) (AVIcon.191 Name: "FeatureSelect" Res: "Icons.FeatureSelect" ) (Tool.192 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: 193 Cursor: "Cursors.ZoomIn" Apply: "View.ZoomInTool" ) (AVIcon.193 Name: "ZoomInTool" Res: "Icons.ZoomInTool" ) (Tool.194 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: 195 Cursor: "Cursors.ZoomOut" Apply: "View.ZoomOutTool" ) (AVIcon.195 Name: "ZoomOutTool" Res: "Icons.ZoomOutTool" ) (Tool.196 Help: "Pan//Drags the display in the direction you move the cursor" HelpTopic: "Pan_tool" Update: "View.HasDataUpdate" Icon: 197 Cursor: "Cursors.Pan" Apply: "View.Pan" ) (AVIcon.197 Name: "Pan" Res: "Icons.Pan" ) (Tool.198 Help: "Measure//Measures distance" HelpTopic: "Measure_tool" Update: "View.HasDataUpdate" Icon: 199 Cursor: "Cursors.Measure" Apply: "View.Measure" ) (AVIcon.199 Name: "Measure" Res: "Icons.Measure" ) (Tool.200 Disabled: 1 Help: "Hot Link//Follows a hot link in the active themes" HelpTopic: "Hot_Link_tool" Update: "View.HotLinkUpdate" Icon: 201 Cursor: "Cursors.Media" Apply: "View.HotLink" ) (AVIcon.201 Name: "Media" Res: "Icons.Media" ) (Tool.202 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: 203 Cursor: "Cursors.Default" Apply: "View.AOITool" ) (AVIcon.203 Name: "AOI" Res: "Icons.AOI" ) (Tool.204 Help: "Label//Labels a feature in the active theme with data from its table" HelpTopic: "Label_tool" Update: "View.LabelToolUpdate" Icon: 205 Cursor: "Cursors.Tag" Apply: "View.LabelTool" ) (AVIcon.205 Name: "Tag" Res: "Icons.Tag" ) (Tool.206 Help: "Text//Creates text on the display" HelpTopic: "Text_tool" Update: "View.GraphicToolUpdate" Icon: 207 Cursor: "Cursors.Text" Apply: "View.TextTool" Click: "SymWin.DisplayFontPanel" ) (AVIcon.207 Name: "Text" Res: "Icons.Text" ) (ToolMenu.208 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 209 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" Child: 210 Child: 211 Child: 213 Child: 215 Child: 217 Child: 219 Child: 221 Child: 223 Child: 225 ) (AVIcon.209 Name: "Point" Res: "Icons.Point" ) (Tool.210 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 209 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" ) (Tool.211 Help: "Draw Straight Line//Creates a line on the display" HelpTopic: "Draw_tool" Update: "View.GraphicToolUpdate" Icon: 212 Cursor: "Cursors.CrossHair" Apply: "View.LineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.212 Name: "SelectLine" Res: "Icons.SelectLine" ) (Tool.213 Help: "Draw Line//Creates a line with two or more points on the display" HelpTopic: "Draw_tool" Update: "View.PolyLineToolUpdate" Icon: 214 Cursor: "Cursors.CrossHair" Apply: "View.PolyLineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.214 Name: "Lines" Res: "Icons.Lines" ) (Tool.215 Help: "Draw Rectangle//Creates a rectangle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 216 Cursor: "Cursors.CrossHair" Apply: "View.RectTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.216 Name: "Rect" Res: "Icons.Rect" ) (Tool.217 Help: "Draw Circle//Creates a circle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 218 Cursor: "Cursors.CrossHair" Apply: "View.CircleTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.218 Name: "Disk" Res: "Icons.Disk" ) (Tool.219 Help: "Draw Polygon//Creates a polygon on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 220 Cursor: "Cursors.CrossHair" Apply: "View.PolyTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.220 Name: "Poly" Res: "Icons.Poly" ) (Tool.221 Disabled: 1 Help: "Draw Line to Split Feature//Creates a line to split line features" HelpTopic: "Draw_tool" Update: "View.SplitLineToolUpdate" Icon: 222 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.222 Name: "SplitLine" Res: "Icons.SplitLine" ) (Tool.223 Disabled: 1 Help: "Draw Line to Split Polygon//Creates a line to split polygon features" HelpTopic: "Draw_tool" Update: "View.SplitPolyToolUpdate" Icon: 224 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.224 Name: "SplitPoly" Res: "Icons.SplitPoly" ) (Tool.225 Disabled: 1 Help: "Draw Line to Append Polygon//Appends a new polygon adjacent to other polygons" HelpTopic: "Draw_tool" Update: "View.AutoCompleteUpdate" Icon: 226 Cursor: "Cursors.CrossHair" Apply: "View.AutoCompleteTool" ) (AVIcon.226 Name: "AutoComplete" Res: "Icons.AutoComplete" ) (ToolMenu.227 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 228 Cursor: "Cursors.Default" Apply: "View.SnapTool" Child: 229 Child: 230 ) (AVIcon.228 Name: "SnapTool" Res: "Icons.SnapTool" ) (Tool.229 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 228 Cursor: "Cursors.Default" Apply: "View.SnapTool" ) (Tool.230 Disabled: 1 Invisible: 1 Help: "Snap//Sets the interactive snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.InteractiveSnapToolUpdate" Icon: 231 Cursor: "Cursors.Default" Apply: "View.InteractiveSnapTool" ) (AVIcon.231 Name: "SnapFeatureTool" Res: "Icons.SnapFeatureTool" ) (AVIcon.232 Name: "Icon" Res: "View.Icon" ) (FN.771 Path: "$HOME" ) (TClr.772 Red: 0xffff Green: 0xffff ) (AVStr.773 S: "View" ) (AVStr.774 S: "Table" ) (AVStr.775 S: "Chart" ) (AVStr.776 S: "Layout" ) (AVStr.777 S: "Script" ) (AVStr.778 S: "Project" ) (AVStr.779 S: "Appl" )