/3.0 (ODB.1 Dependencies: "$AVEXT/spacestat.avx\n" FirstRootClassName: "Project" Roots: 2 Version: 30 ) (Project.2 Name: "near_neigh.apr" CreationDate: "Sunday, March 22, 1998 01:53:16" GUIName: "Project" Win: 3 CSMgr: 4 VisGUIWidth: 70 Doc: 5 Doc: 8 Buttons: 77 Buttons: 78 Buttons: 79 Dependencies: 80 Scripts: 81 GUI: 82 WorkDir: 878 WinX: 199 WinY: 65 WinW: 755 WinH: 556 SerialNumber: "709971109536" SelColor: 879 GUINames: 880 GUINames: 881 GUINames: 882 GUINames: 883 GUINames: 884 GUINames: 885 GUINames: 886 ) (DocWin.3 Owner: 2 Open: 1 X: 5 Y: 5 W: 248 H: 318 ) (CSMgr.4 ) (SEd.5 Name: "a.NearestNeighbor" CreationDate: "Sunday, March 22, 1998 01:53:17" GUIName: "Script" Win: 6 CSMgr: 7 Source: "\n\n' Colin's nearest neighbour script\n' Modified slightly by Robert Cheetham 3/21/98\n\n' New version is now 1.8, compiled on 12/5/97. \n' Old version was 1.7, compiled on 9/3/97.\n' First version was 0.1, written on 7/16/97.\n\n' My Script Name: \"Nearest Neighbour Script, v.1.8\" (nearst18.ave)\n' Original ESRI Name: \"View.SpatialNearestNeighbor\"\n\n' Title: Perform Spatial Nearest Neighbor Analysis\n\n' Topics: Analysis\n\n' Description: Create a new button in a ViewDocGUI with this script as\n' the Apply script. On ce you click on the button, you will be\n' asked for the study area shapefile and the study points shapefile. \n' The wait cursor will appear and then\n' a messagebox will tell you the R value and how many features were\n' accounted for in the analyis. R values relate how clustered or \n' dispersed points are within the polygon theme you specified. \n' An R value of less than 1 indicates a tendency towards a clumped (clustered) \n' pattern. An R value of 1 indicates a random distribution. An R value of \n' great er than 1 indicates an organized (uniform) pattern. This script also applies\n' a simple test of significance for deviation from randomness, using the standard error\n' of the expected difference.\n' This script uses code from the unsupported ESRI script \"View.SpatialNearestNeighbor\" that\n' comes with ArcView 3. At first, I thought the ESRI code seems to perform a correct nearest neighbor distance analysis,\n' as in that of Clark and Evans (1954), as cited in:\n' Krebs, Charles. 1989. Ecological Methodology. H arper Collins Publishers, New York, NY. 654pp.\n' As of 12-5-97, though, I calculated that ESRI's original script did NOT calculate the total \n' distance correctly (td or ri), leading to an incorrect nearest neighbor analysis. That problem\n' is fixed in my 1.8 version, but not in anything earlier.\n' My version of the script does allow for a \"boundary strip\" so that the Clark & Evans test comes\n' out unbiased. If you do not have a \"boundary strip\" of points outside your study area, the Clark \n' & Evans test is biased in favour of regular patterns, especially where the number of points is less\n' than 100 (see Krebs, 1989 for a more complete discussion).\n\n\n' Requires: The active document must be a view, with a one-polygon theme \n' for the study area, and a shapefile of study points.\n\n\n' Returns: R value, and status of null hypothesis.\n\n\n\ntheView = av.GetActiveDoc\n\n\n'The CODE:\n\n\n'Select theme to use as the study area\ntheThemeList=theView.GetThemes\nthePolygonThemeList = List.Make\nthePointThemeList = List.Make\n\n for each t in theThemeList\n if (t.GetFTab.GetShapeClass.GetClassName = \"POLYGON\") then\n thePolygonThemeList.Add (t)\n elseif (t.GetFTab.GetShapeClass.GetClassName = \"POINT\") then\n thePointThemeList.Add(t)\n end\nend\n\ntheChosenTheme = MsgBox.List(thePolygonThemeList,\"Choose the theme to use as the study area\",\"Study Area\")\nthePointTheme = MsgBox.List(thePointThemeList,\"Choose the theme containing the point features\",\"Points\")\nthePointFTab = thePointTheme.GetFTab\n\nMsgBox.Info(\"The Chosen Themes are\" ++ theChosenTheme.AsString ++\"and\" ++ thePointTheme.AsString,\"Information Box\")\n\n\n'Set the area\ntheChosenThemeFtab = theChosenTheme.GetFTab\ntheAreaField = theChosenThemeFTab.FindField(\"Area\")\nif (theAreaField = nil) then\n area = theChosenThemeFTab.ReturnValue(theChosenThemeFTab.FindField(\"Shape\"), 0).AsPolygon.ReturnArea\nelse\n area = theChosenThemeFTab.ReturnValueNumber(theAreaField,0)\n low = theChosenThemeFTab.ReturnValueNumber(theAreaField,0)\nend\n\nMsgBox.Info(\"The area of the study site is \" ++ area.AsStr ing ++\" units^2\",\"Info Box 2\")\n\n\n\n'After posting question code\nChosenShpType = theChosenThemeFtab.FindField(\"Shape\")\nChosenShape = theChosenThemeFtab.ReturnValue(ChosenShpType,0)\n\n\n'Mixture of ESRI code and my code:\nShp = thePointFTab.FindField(\"Shape\")\ntd = 0\nn = 0\nj = 0\n\nav.UseWaitCursor\n\n\nFor each rec in thePointFTab\n Val = thePointFTab.ReturnValue(Shp,rec)\n\n ' Establishes that Val is a point\n xz = Val.GetX\n yz = Val.GetY\n\n\n if (ChosenShape.Contains(Val).Not) then continue end \n n = n + 1\n\n For e ach z2 in thePointFTab\n Valn = thePointFTab.ReturnValue(Shp,z2)\n xn = Valn.GetX\n yn = Valn.GetY \n\n j = j + 1\n\n d = (((xz - xn) * (xz - xn)) + ((yz - yn ) * (yz - yn))).sqrt\n\n\n if ((d > 0) and (d <= low)) then \n low = d \n end \n\n end \n\n td = td + low\n\n low = theChosenThemeFTab.ReturnValueNumber(theAreaField,0)\n\n\n 'MsgBox.Info(\"The total distance is\"++td.AsString,\"Ri\")\n\n\nend \n\n\n\n\n\np = n / area\n\n\nRe = (1) / (2*((n/area).sqrt))\n\n\nRa = td / n\n\n\nR = Ra / Re\n\n\nMsgBox.Info(\"The R value =\"++R.AsString++\"where n = \"+n.AsString,\"Result\")\n\n\n\n\n\n'My code: test of significant deviation\n\n\nz = (Ra - Re) / (0.26136 / ((n*p).sqrt) )\n\n\nzAbs = z.Abs\n\n\nMsgBox.Info(\"z is equal to \"++z.AsString,\"z value\")\n\n\nif (z.Abs < 1.96) then\n\n\n MsgBox.Info(\"Null hypothesis that points are randomly distributed is accepted with |z|=\"++zAbs.AsString++\"and R=\"+R.AsString,\"Null hyp.\")\n\n\nelseif ( (z.Abs > 1.96) and (R < 1.0) ) then\n\n\n MsgBox.Info(\"Null hypothesis rejected; a tendency towards clumping exists with |z|=\"++zAbs.AsString++\"and R=\"+R.AsString,\"Rej. Null hyp.1\")\n\n\nelse '|z|>1.96 & R > 1.0\n\n\n MsgBox.Info(\"Null hypothesis rejected; a tendency towards a regular pattern (uniformity) exists with |z|=\"++zAbs.AsString++\"and R=\"+R.AsString,\"Rej. Null hyp.2\")\n\n\nend\n\n\n\n\n\nMsgBox.Info(\"z2-inner part of script ran \"++j.AsString++\" times and rec-outer ran \"++n.AsString++\" times\",\"Counter\")\n\n\nMsgBox.Info(\"ri or td =\"++td.AsString,\"Ri\")\n\n\n\n\n\n'End of script. \n\n\n\n\n\n" ) (DocWin.6 Owner: 5 X: 50 Y: 50 W: 933 H: 542 ) (CSMgr.7 ) (View.8 Name: "Nearest Neighbor View" Creator: "Robert Cheetham" CreationDate: "Sunday, March 22, 1998 01:59:14" GUIName: "View" Win: 9 CSMgr: 10 Graphics: 11 Theme: 18 Theme: 46 Dpy: 12 TOCWidth: 150 ) (DocWin.9 Owner: 8 X: 155 Y: 14 W: 695 H: 413 ) (CSMgr.10 ) (GList.11 Dpy: 12 FormatNumb: 17 ) (MapDpy.12 Left: 21.74999999999997 Bottom: 1.54999999999999 Top: 275.44999999999999 Right: 753.25000000000000 Scale: 13 FrameTop: 3.96875000000000 FrameRight: 5.52083333333333 PageDpy: 14 FitToPage: 1 MouseLoc: 16 ) (Numb.13 N: 0.00754727728412 ) (PageDpy.14 Top: 3.96875000000000 Right: 5.52083333333333 ReportUnits: 1 Units: 1 Scale: 15 ZoomRight: 5.52083333333333 ZoomTop: 3.96875000000000 GridSpacingX: 0.25000000000000 GridSpacingY: 0.25000000000000 ) (Numb.15 N: 0.18113207547170 ) (PointD.16 x: 25.89056603773582 y: 217.86084905660366 ) (Numb.17 ) (FTheme.18 Name: "Puerto.shp" Source: 19 Flags: 0x04 Legend: 30 Threshold: 43 View: 8 GSet: 44 LegEditScript: "View.EditLegend" TxPos: 45 ) (ShpSrc.19 Name: 20 FTab: 22 ) (SrcName.20 FileName: 21 Name: "puerto.shp" SubName: "Polygon" OwnerClass: "ShpSrc" ) (FN.21 Path: "c:/sys502/arcview/shapes/puerto.shp" ) (FTab.22 Name: "puerto.dbf" BTab: 23 Fields: 28 Fields: 24 Fields: 25 Fields: 26 SelBits: 29 FSrc: 19 ) (dBASE.23 Name: "puerto.dbf" Fields: 24 Fields: 25 Fields: 26 FileName: 27 ) (Field.24 Name: "Area" Btab: 23 Alias: "Area" Visible: 1 Type: 9 Order: -1 ) (Field.25 Name: "Perimeter" Btab: 23 Alias: "Perimeter" Visible: 1 Type: 9 Order: -1 ) (Field.26 Name: "Pr" Btab: 23 Alias: "Pr" Visible: 1 Type: 9 Order: -1 ) (FN.27 Path: "c:/sys502/arcview/shapes/puerto.dbf" ) (Field.28 Name: "Shape" Alias: "Shape" Visible: 1 Type: 19 Order: -1 ) (Bitmap.29 NumBits: 1 ) (Legend.30 SymType: 0x02 LegType: 0x01 ClassType: 0x03 Symbols: 31 Class: 36 StdDevs: 1.00000000000000 NullSym: 37 NullValues: 41 StatValues: 42 Precision: -3 ) (SymList.31 Child: 32 ) (BShSym.32 Color: 33 Outline: 1 OutlineColor: 34 OutlineWidth: 0.10000000000000 BgColor: 35 ) (TClr.33 Red: 0x901b Green: 0x2b84 Blue: 0xa01f ) (TClr.34 ) (TClr.35 Red: 0xffff Green: 0xffff Blue: 0xffff ) (LClass.36 IsText: 1 Precision: -3 ) (BShSym.37 Color: 38 Outline: 1 OutlineColor: 39 OutlineWidth: 0.10000000000000 BgColor: 40 ) (TClr.38 Name: "Transparent" ) (TClr.39 Name: "Transparent" ) (TClr.40 Red: 0xffff Green: 0xffff Blue: 0xffff ) (NameDict.41 ) (NameDict.42 ) (Thresh.43 ) (GSet.44 ) (TxPosPly.45 HAlign: 3 VAlign: 3 ) (FTheme.46 Name: "Pr_data.shp" Source: 47 Flags: 0x07 Legend: 59 Threshold: 74 View: 8 GSet: 75 LegEditScript: "View.EditLegend" TxPos: 76 LabelField: 52 ) (ShpSrc.47 Name: 48 FTab: 50 ) (SrcName.48 FileName: 49 Name: "pr_data.shp" SubName: "Point" OwnerClass: "ShpSrc" ) (FN.49 Path: "c:/sys502/arcview/shapes/pr_data.shp" ) (FTab.50 Name: "pr_data.dbf" BTab: 51 Fields: 57 Fields: 52 Fields: 53 Fields: 54 Fields: 55 SelBits: 58 FSrc: 47 ) (dBASE.51 Name: "pr_data.dbf" Fields: 52 Fields: 53 Fields: 54 Fields: 55 FileName: 56 ) (Field.52 Name: "Label" Btab: 51 Alias: "Label" Visible: 1 Type: 4 Order: -1 ) (Field.53 Name: "Easting" Btab: 51 Alias: "Easting" Visible: 1 Type: 9 Order: -1 ) (Field.54 Name: "Northing" Btab: 51 Alias: "Northing" Visible: 1 Type: 9 Order: -1 ) (Field.55 Name: "Rain_mm_yr" Btab: 51 Alias: "Rain_mm_yr" Visible: 1 Type: 9 Order: -1 ) (FN.56 Path: "c:/sys502/arcview/shapes/pr_data.dbf" ) (Field.57 Name: "Shape" Alias: "Shape" Visible: 1 Type: 17 Order: -1 ) (Bitmap.58 NumBits: 30 ) (Legend.59 LegType: 0x01 ClassType: 0x03 Symbols: 60 Class: 68 StdDevs: 1.00000000000000 NullSym: 69 NullValues: 72 StatValues: 73 Precision: -3 ) (SymList.60 Child: 61 ) (BMkSym.61 Color: 62 BgColor: 63 Font: 64 Size: 8.00000000000000 Pattern: 35 Angle: 360.00000000000000 ) (TClr.62 Red: 0x23e0 Green: 0x6f20 Blue: 0xd1c4 ) (TClr.63 Name: "Transparent" ) (NFont.64 Family: 65 Name: 66 Style: 67 Weight: 1 Wideness: 1 ) (AVStr.65 S: "ESRI Geometric Symbols" ) (AVStr.66 S: "ESRI Geometric Symbols" ) (AVStr.67 S: "Normal" ) (LClass.68 IsText: 1 Precision: -3 ) (BMkSym.69 Color: 70 BgColor: 71 Font: 64 Size: 8.00000000000000 Pattern: 35 Angle: 360.00000000000000 ) (TClr.70 Name: "Transparent" ) (TClr.71 Name: "Transparent" ) (NameDict.72 ) (NameDict.73 ) (Thresh.74 ) (GSet.75 ) (TxPosPt.76 HAlign: 4 VAlign: 3 ) (LButn.77 HelpTopic: "New_button" Update: "Doc.NewUpdate" Label: "&New" Click: "View.New" ) (LButn.78 HelpTopic: "Open_button" Update: "Doc.OpenUpdate" Label: "&Open" Click: "Doc.Open" ) (LButn.79 HelpTopic: "Print_button" Update: "Doc.ActionUpdate" Label: "P&rint" Click: "Doc.Action" ) (FN.80 Path: "$AVEXT/spacestat.avx" ) (NameDict.81 ) (DocGUI.82 Name: "View" Type: "View" Modified: 1 Visible: 1 MenuBar: 83 ButnBar: 209 Popups: 255 ToolBar: 274 NewScript: "View.New" OpenScript: "Doc.Open" ActionScript: "Doc.Action" NewUpdateScript: "Doc.NewUpdate" OpenUpdateScript: "Doc.OpenUpdate" ActionUpdateScript: "Doc.ActionUpdate" Title: "Views" Icon: 327 ) (MenuBar.83 Child: 84 Child: 96 Child: 116 Child: 137 Child: 159 Child: 194 Child: 204 ) (PMenu.84 InternalName: "File" Child: 85 Child: 86 Child: 87 Child: 88 Child: 89 Child: 90 Child: 91 Child: 92 Child: 93 Child: 94 Child: 95 Label: "&File" ) (Choice.85 Help: "Closes the active component" HelpTopic: "Close" Label: "&Close" Click: "Project.CloseDoc" Shortcut: "Keys.None" ) (Choice.86 Help: "Closes all components" HelpTopic: "Close_All" Label: "Close &All" Click: "Project.CloseAll" Shortcut: "Keys.None" ) (Space.87 ) (Choice.88 Help: "Allows you to specify the current working directory" HelpTopic: "Set_Working_Directory" Label: "Set &Working Directory..." Click: "Project.SetProjectWorkDir" Shortcut: "Keys.None" ) (Choice.89 Help: "Saves the current project" HelpTopic: "Save_Project" Label: "&Save Project" Click: "Project.Save" Shortcut: "Keys.Ctrl+S" ) (Space.90 ) (Choice.91 Help: "Prints the view" HelpTopic: "Print" Label: "&Print..." Click: "View.Print" Shortcut: "Keys.None" ) (Choice.92 Help: "Edits the printer and the printing options" HelpTopic: "Print_Setup" Label: "P&rint Setup..." Click: "Project.PrintSetup" Shortcut: "Keys.None" ) (Choice.93 Help: "Exports the view" HelpTopic: "Export" Update: "View.HasThemesUpdate" Label: "&Export..." Click: "View.ExportDisp" Shortcut: "Keys.None" ) (Space.94 ) (Choice.95 Help: "Exits ArcView" HelpTopic: "Exit" Label: "E&xit" Click: "Project.Exit" Shortcut: "Keys.None" ) (PMenu.96 InternalName: "Edit" Child: 97 Child: 98 Child: 99 Child: 100 Child: 101 Child: 102 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: "&Edit" ) (Choice.97 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.98 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.99 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.100 ) (Choice.101 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.102 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.103 ) (Choice.104 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.105 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.106 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.107 ) (Choice.108 Disabled: 1 Help: "Combines the selected polygons" HelpTopic: "Combine_Graphics" Update: "View.CombineUpdate" Label: "Com&bine Graphics" Click: "View.CombineGraphics" Shortcut: "Keys.None" ) (Choice.109 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.110 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.111 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.112 ) (Choice.113 Disabled: 1 Help: "Inserts the contents of the clipboard" HelpTopic: "Paste" Update: "View.PasteUpdate" Label: "&Paste" Click: "View.Paste" Shortcut: "Keys.Ctrl+V" ) (Space.114 ) (Choice.115 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.116 InternalName: "View" Child: 117 Child: 118 Child: 119 Child: 120 Child: 121 Child: 122 Child: 123 Child: 124 Child: 125 Child: 126 Child: 127 Child: 128 Child: 129 Child: 130 Child: 131 Child: 132 Child: 133 Child: 134 Child: 135 Child: 136 Label: "&View" ) (Choice.117 Help: "Displays the dialog box to edit properties of the view" HelpTopic: "View_Properties" Label: "&Properties..." Click: "View.Properties" Shortcut: "Keys.None" ) (Space.118 ) (Choice.119 Help: "Inserts themes into the view" HelpTopic: "Add_Theme" Label: "&Add Theme..." Click: "View.Add" Shortcut: "Keys.Ctrl+T" ) (Choice.120 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.121 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.122 Help: "Creates a new theme" HelpTopic: "New_Theme" Label: "&New Theme..." Click: "View.NewTheme" Shortcut: "Keys.None" ) (Choice.123 Help: "Makes all themes visible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "&Themes On" Click: "View.ThemesOn" Shortcut: "Keys.None" ) (Choice.124 Help: "Makes all themes invisible" HelpTopic: "Themes_On_Themes_Off" Update: "View.HasThemesUpdate" Label: "T&hemes Off" Click: "View.ThemesOff" Shortcut: "Keys.Esc" ) (Space.125 ) (Choice.126 Help: "Create a Layout from the View" HelpTopic: "Layout_menu_choice" Update: "View.HasThemesUpdate" Label: "La&yout..." Click: "View.Layout" Shortcut: "Keys.None" ) (Space.127 ) (Choice.128 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.129 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.130 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.131 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.132 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.133 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.134 ) (Choice.135 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.136 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.137 InternalName: "Theme" Child: 138 Child: 139 Child: 140 Child: 141 Child: 142 Child: 143 Child: 144 Child: 145 Child: 146 Child: 147 Child: 148 Child: 149 Child: 150 Child: 151 Child: 152 Child: 153 Child: 154 Child: 155 Child: 156 Child: 157 Child: 158 Label: "&Theme" ) (Choice.138 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.139 ) (Choice.140 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.141 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.142 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.143 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.144 ) (Choice.145 Help: "Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Label: "Edit &Legend..." Click: "View.EditLegendClick" Shortcut: "Keys.None" ) (Choice.146 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.147 ) (Choice.148 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.149 ) (Choice.150 Help: "Labels features in active, visible themes" HelpTopic: "Auto_label" Update: "View.LabelThemesUpdate" Label: "&Auto-label..." Click: "View.LabelThemes" Shortcut: "Keys.Ctrl+L" ) (Choice.151 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.152 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.153 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.154 ) (Choice.155 Help: "Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Label: "&Table..." Click: "View.ShowTable" Shortcut: "Keys.None" ) (Choice.156 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.157 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.158 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.159 InternalName: "Graphics" Child: 160 Child: 161 Child: 162 Child: 163 Child: 164 Child: 165 Child: 166 Child: 167 Child: 168 Child: 169 Child: 170 Child: 171 Child: 172 Label: "&Graphics" ) (Choice.160 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.161 ) (Choice.162 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.163 Disabled: 1 Help: "Aligns the selected graphics" HelpTopic: "Align" Update: "Graphic.HasSelectionUpdate" Label: "&Align..." Click: "Graphic.Align" Shortcut: "Keys.Ctrl+A" ) (Space.164 ) (Choice.165 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.166 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.167 Disabled: 1 Help: "Groups selected graphics" HelpTopic: "Group_on_a_view" Update: "Graphic.GroupUpdate" Label: "&Group" Click: "Graphic.Group" Shortcut: "Keys.Ctrl+G" ) (Choice.168 Disabled: 1 Help: "Ungroups selected graphics" HelpTopic: "Ungroup_on_a_view" Update: "Graphic.UngroupUpdate" Label: "&Ungroup" Click: "Graphic.Ungroup" Shortcut: "Keys.Ctrl+U" ) (Space.169 ) (Choice.170 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.171 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.172 ) (PMenu.194 InternalName: "Window" Child: 195 Child: 196 Child: 197 Child: 198 Child: 199 Child: 200 Child: 202 Child: 203 Label: "&Window" ) (Choice.195 Help: "Arranges windows as non-overlapping tiles" HelpTopic: "Tile" Label: "&Tile" Click: "Project.Tile" Shortcut: "Keys.None" ) (Choice.196 Help: "Arranges windows" HelpTopic: "Cascade" Label: "&Cascade" Click: "Project.Cascade" Shortcut: "Keys.None" ) (Choice.197 Help: "Arranges iconified windows" HelpTopic: "Arrange_Icons" Label: "&Arrange Icons" Click: "Project.ArrangeIcons" Shortcut: "Keys.None" ) (Space.198 ) (Choice.199 Help: "Shows the symbol window" HelpTopic: "Show_Symbol_Window" Label: "Show Symbol Window..." Click: "Project.ShowHideSymWin" Shortcut: "Keys.Ctrl+P" ) (Space.200 ObjectTag: 201 Update: "WindowMenuUpdate" ) (AVStr.201 S: "near_neigh.apr Nearest Neighbor View" ) (Choice.202 Help: "Activates near_neigh.apr" Label: "&1 near_neigh.apr" Click: "WindowActivate" Shortcut: "Keys.None" ) (Choice.203 Help: "Activates Nearest Neighbor View" Label: "&2 Nearest Neighbor View" Click: "WindowActivate" Shortcut: "Keys.None" ) (PMenu.204 InternalName: "Help" Child: 205 Child: 206 Child: 207 Child: 208 Label: "&Help" ) (Choice.205 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.206 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.207 ) (Choice.208 Help: "Provides information about ArcView" HelpTopic: "About" Label: "&About ArcView..." Click: "Project.About" Shortcut: "Keys.None" ) (ButnBar.209 Child: 210 Child: 212 Child: 213 Child: 215 Child: 216 Child: 218 Child: 220 Child: 222 Child: 223 Child: 225 Child: 227 Child: 229 Child: 230 Child: 232 Child: 234 Child: 236 Child: 238 Child: 240 Child: 242 Child: 243 Child: 245 Child: 249 Child: 250 Child: 252 Child: 253 ) (Butn.210 Help: "Save Project//Saves the current project" HelpTopic: "Save_Project" Icon: 211 Click: "Project.Save" ) (AVIcon.211 Name: "Save" Res: "Icons.Save" ) (Space.212 ) (Butn.213 Help: "Add Theme//Inserts themes into the view" HelpTopic: "Add_Theme" Icon: 214 Click: "View.Add" ) (AVIcon.214 Name: "AddTheme" Res: "Icons.AddTheme" ) (Space.215 ) (Butn.216 Help: "Theme Properties//Displays the dialog box to edit properties of the active theme" HelpTopic: "Theme_Properties" Update: "View.ActiveThemesUpdate" Icon: 217 Click: "View.ThemeProperties" ) (AVIcon.217 Name: "Props" Res: "Icons.Props" ) (Butn.218 Help: "Edit Legend//Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Icon: 219 Click: "View.EditLegendClick" ) (AVIcon.219 Name: "Legend" Res: "Icons.Legend" ) (Butn.220 Help: "Open Theme Table//Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Icon: 221 Click: "View.ShowTable" ) (AVIcon.221 Name: "Table" Res: "Icons.Table" ) (Space.222 ) (Butn.223 Help: "Find//Finds features in the active themes using the text you enter" HelpTopic: "Find" Update: "View.TabularThemesUpdate" Icon: 224 Click: "View.Find" ) (AVIcon.224 Name: "Find" Res: "Icons.Find" ) (Butn.225 Disabled: 1 Help: "Locate Address//Locates an address in the active, matchable theme" HelpTopic: "Locate_Address" Update: "View.LocateUpdate" Icon: 226 Click: "View.Locate" ) (AVIcon.226 Name: "AddMatch" Res: "Icons.AddMatch" ) (Butn.227 Help: "Query Builder//Displays the Query Builder to select features with a logical expression" HelpTopic: "Query_Builder" Update: "View.AttributeThemesUpdate" Icon: 228 Click: "View.Query" ) (AVIcon.228 Name: "QueryBuilder" Res: "Icons.QueryBuilder" ) (Space.229 ) (Butn.230 Help: "Zoom to Full Extent//Zooms to the extent of all themes" HelpTopic: "Zoom_to_Full_Extent" Update: "View.HasDataUpdate" Icon: 231 Click: "View.ZoomFullExtent" ) (AVIcon.231 Name: "ZoomView" Res: "Icons.ZoomView" ) (Butn.232 Help: "Zoom to Active Theme(s)//Zooms to the extent of active themes" HelpTopic: "Zoom_to_Active_Theme" Update: "View.ActiveThemesUpdate" Icon: 233 Click: "View.ZoomToThemes" ) (AVIcon.233 Name: "ZoomTheme" Res: "Icons.ZoomTheme" ) (Butn.234 Help: "Zoom to Selected//Zooms to the extent of the selected features" HelpTopic: "Zoom_to_Selected" Update: "View.SelectableThemesUpdate" Icon: 235 Click: "View.ZoomToSelected" ) (AVIcon.235 Name: "ZoomToSelected" Res: "Icons.ZoomToSelected" ) (Butn.236 Help: "Zoom In//Zooms in on the center of the display" HelpTopic: "Zoom_In" Update: "View.HasDataUpdate" Icon: 237 Click: "View.ZoomIn" ) (AVIcon.237 Name: "ZoomIn" Res: "Icons.ZoomIn" ) (Butn.238 Help: "Zoom Out//Zooms out from the center of the display" HelpTopic: "Zoom_Out" Update: "View.HasDataUpdate" Icon: 239 Click: "View.ZoomOut" ) (AVIcon.239 Name: "ZoomOut" Res: "Icons.ZoomOut" ) (Butn.240 Help: "Zoom to Previous Extent//Goes back to the previous extent you were viewing" HelpTopic: "Zoom_Previous" Update: "View.UndoZoomUpdate" Icon: 241 Click: "View.UndoZoom" ) (AVIcon.241 Name: "ZoomPrevious" Res: "Icons.ZoomPrevious" ) (Space.242 ) (Butn.243 Disabled: 1 Help: "Select Features Using Graphic//Selects features in active themes using selected graphics" HelpTopic: "Select_Features_Using_Graphic" Update: "View.SpatialSelectUpdate" Icon: 244 Click: "View.SpatialSelect" ) (AVIcon.244 Name: "SpatialSelect" Res: "Icons.SpatialSelect" ) (Butn.245 Help: "Clear Selected Features//Unselects the selected features of all active themes" HelpTopic: "Clear_Selected_Features" Update: "View.AttributeThemesUpdate" Icon: 246 Click: "View.ClearSelect" ) (AVIcon.246 Name: "SelectNone" Res: "Icons.SelectNone" ) (Space.249 ) (Butn.250 Help: "Help//Gets help about the next button, tool, or menu choice you click" HelpTopic: "Help_button" Icon: 251 Click: "Help.Tool" ) (AVIcon.251 Name: "HelpTool" Res: "Icons.HelpTool" ) (Space.252 ) (Butn.253 Help: "Nearest Neighbor//Calculates Nearest Neighbor Distance from boundary and point file." Icon: 254 Click: "a.NearestNeighbor" ) (AVIcon.254 Name: "Icon5" Res: "Icons.Icon5" ) (PopupSet.255 Child: 256 ) (Popup.256 Child: 257 Child: 258 Child: 259 Child: 260 Child: 261 Child: 262 Child: 263 Child: 264 Child: 265 Child: 266 Child: 267 Child: 268 Child: 269 Child: 270 Child: 271 Child: 272 Child: 273 Label: "Menu" ) (Choice.257 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.258 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.259 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.260 ) (Choice.261 Help: "Turns general snapping on" Update: "View.ToggleGeneralSnapUpdate" Label: "Enable General Snapping" Click: "View.ToggleGeneralSnap" Shortcut: "Keys.None" ) (Choice.262 Help: "Turns interactive snapping on" Update: "View.ToggleInteractiveSnapUpdate" Label: "Enable Interactive Snapping" Click: "View.ToggleInteractiveSnap" Shortcut: "Keys.None" ) (Space.263 ) (Choice.264 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.265 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.266 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.267 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.268 ) (Choice.269 Help: "Unselects the selected features in all active themes" Update: "View.AttributeThemesUpdate" Label: "Clear Selection" Click: "View.ClearSelect" Shortcut: "Keys.None" ) (Choice.270 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.271 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.272 Help: "Zooms to the extent of the selected features" Update: "View.SelectableThemesUpdate" Label: "Zoom to Selected" Click: "View.ZoomToSelected" Shortcut: "Keys.None" ) (Choice.273 Help: "Centers display on point where you click to bring up popup" Update: "View.HasDataUpdate" Label: "Pan" Click: "View.PopupPan" Shortcut: "Keys.None" ) (ToolBar.274 Child: 275 Child: 277 Child: 279 Child: 281 Child: 287 Child: 289 Child: 291 Child: 293 Child: 295 Child: 297 Child: 299 Child: 301 Child: 303 Child: 322 ) (Tool.275 Help: "Identify//Provides information about a feature" HelpTopic: "Identify_tool" Update: "View.IdentifyUpdate" Icon: 276 Cursor: "Cursors.ID" Apply: "View.Identify" ) (AVIcon.276 Name: "ID" Res: "Icons.ID" ) (Tool.277 Help: "Pointer//Selects, moves, and resizes graphics" HelpTopic: "Pointer_tool" Update: "View.HasDataUpdate" Icon: 278 Cursor: "Cursors.Select" Apply: "View.Select" Click: "View.SelectTool" ) (AVIcon.278 Name: "Select" Res: "Icons.Select" ) (Tool.279 Disabled: 1 Help: "Vertex Edit//Adds, moves, and deletes vertices of features and graphics" HelpTopic: "Vertex_Edit_tool" Update: "View.SelectToEditUpdate" Icon: 280 Cursor: "Cursors.SelectEdit" Apply: "View.SelectToEdit" Click: "View.SelectToEditTool" ) (AVIcon.280 Name: "SelectEdit" Res: "Icons.SelectEdit" ) (Tool.281 Help: "Select Feature//Selects features in the active themes by pointing or dragging" HelpTopic: "Select_Feature_tool" Update: "View.SelectableThemesUpdate" Icon: 282 Cursor: "Cursors.Default" Apply: "View.SelectPoint" ) (AVIcon.282 Name: "FeatureSelect" Res: "Icons.FeatureSelect" ) (Tool.287 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: 288 Cursor: "Cursors.ZoomIn" Apply: "View.ZoomInTool" ) (AVIcon.288 Name: "ZoomInTool" Res: "Icons.ZoomInTool" ) (Tool.289 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: 290 Cursor: "Cursors.ZoomOut" Apply: "View.ZoomOutTool" ) (AVIcon.290 Name: "ZoomOutTool" Res: "Icons.ZoomOutTool" ) (Tool.291 Help: "Pan//Drags the display in the direction you move the cursor" HelpTopic: "Pan_tool" Update: "View.HasDataUpdate" Icon: 292 Cursor: "Cursors.Pan" Apply: "View.Pan" ) (AVIcon.292 Name: "Pan" Res: "Icons.Pan" ) (Tool.293 Help: "Measure//Measures distance" HelpTopic: "Measure_tool" Update: "View.HasDataUpdate" Icon: 294 Cursor: "Cursors.Measure" Apply: "View.Measure" ) (AVIcon.294 Name: "Measure" Res: "Icons.Measure" ) (Tool.295 Disabled: 1 Help: "Hot Link//Follows a hot link in the active themes" HelpTopic: "Hot_Link_tool" Update: "View.HotLinkUpdate" Icon: 296 Cursor: "Cursors.Media" Apply: "View.HotLink" ) (AVIcon.296 Name: "Media" Res: "Icons.Media" ) (Tool.297 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: 298 Cursor: "Cursors.Default" Apply: "View.AOITool" ) (AVIcon.298 Name: "AOI" Res: "Icons.AOI" ) (Tool.299 Help: "Label//Labels a feature in the active theme with data from its table" HelpTopic: "Label_tool" Update: "View.LabelToolUpdate" Icon: 300 Cursor: "Cursors.Tag" Apply: "View.LabelTool" ) (AVIcon.300 Name: "Tag" Res: "Icons.Tag" ) (Tool.301 Help: "Text//Creates text on the display" HelpTopic: "Text_tool" Update: "View.GraphicToolUpdate" Icon: 302 Cursor: "Cursors.Text" Apply: "View.TextTool" Click: "SymWin.DisplayFontPanel" ) (AVIcon.302 Name: "Text" Res: "Icons.Text" ) (ToolMenu.303 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 304 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" Child: 305 Child: 306 Child: 308 Child: 310 Child: 312 Child: 314 Child: 316 Child: 318 Child: 320 ) (AVIcon.304 Name: "Point" Res: "Icons.Point" ) (Tool.305 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 304 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" ) (Tool.306 Help: "Draw Straight Line//Creates a line on the display" HelpTopic: "Draw_tool" Update: "View.GraphicToolUpdate" Icon: 307 Cursor: "Cursors.CrossHair" Apply: "View.LineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.307 Name: "SelectLine" Res: "Icons.SelectLine" ) (Tool.308 Help: "Draw Line//Creates a line with two or more points on the display" HelpTopic: "Draw_tool" Update: "View.PolyLineToolUpdate" Icon: 309 Cursor: "Cursors.CrossHair" Apply: "View.PolyLineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.309 Name: "Lines" Res: "Icons.Lines" ) (Tool.310 Help: "Draw Rectangle//Creates a rectangle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 311 Cursor: "Cursors.CrossHair" Apply: "View.RectTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.311 Name: "Rect" Res: "Icons.Rect" ) (Tool.312 Help: "Draw Circle//Creates a circle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 313 Cursor: "Cursors.CrossHair" Apply: "View.CircleTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.313 Name: "Disk" Res: "Icons.Disk" ) (Tool.314 Help: "Draw Polygon//Creates a polygon on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 315 Cursor: "Cursors.CrossHair" Apply: "View.PolyTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.315 Name: "Poly" Res: "Icons.Poly" ) (Tool.316 Disabled: 1 Help: "Draw Line to Split Feature//Creates a line to split line features" HelpTopic: "Draw_tool" Update: "View.SplitLineToolUpdate" Icon: 317 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.317 Name: "SplitLine" Res: "Icons.SplitLine" ) (Tool.318 Disabled: 1 Help: "Draw Line to Split Polygon//Creates a line to split polygon features" HelpTopic: "Draw_tool" Update: "View.SplitPolyToolUpdate" Icon: 319 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.319 Name: "SplitPoly" Res: "Icons.SplitPoly" ) (Tool.320 Disabled: 1 Help: "Draw Line to Append Polygon//Appends a new polygon adjacent to other polygons" HelpTopic: "Draw_tool" Update: "View.AutoCompleteUpdate" Icon: 321 Cursor: "Cursors.CrossHair" Apply: "View.AutoCompleteTool" ) (AVIcon.321 Name: "AutoComplete" Res: "Icons.AutoComplete" ) (ToolMenu.322 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 323 Cursor: "Cursors.Default" Apply: "View.SnapTool" Child: 324 Child: 325 ) (AVIcon.323 Name: "SnapTool" Res: "Icons.SnapTool" ) (Tool.324 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 323 Cursor: "Cursors.Default" Apply: "View.SnapTool" ) (Tool.325 Disabled: 1 Invisible: 1 Help: "Snap//Sets the interactive snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.InteractiveSnapToolUpdate" Icon: 326 Cursor: "Cursors.Default" Apply: "View.InteractiveSnapTool" ) (AVIcon.326 Name: "SnapFeatureTool" Res: "Icons.SnapFeatureTool" ) (AVIcon.327 Name: "Icon" Res: "View.Icon" ) (FN.878 Path: "$HOME" ) (TClr.879 Red: 0xffff Green: 0xffff ) (AVStr.880 S: "View" ) (AVStr.881 S: "Table" ) (AVStr.882 S: "Chart" ) (AVStr.883 S: "Layout" ) (AVStr.884 S: "Script" ) (AVStr.885 S: "Project" ) (AVStr.886 S: "Appl" )