/3.0 (ODB.1 Dependencies: "$AVEXT/spacestat.avx\n$AVEXT/spatial.avx\n" FirstRootClassName: "Project" Roots: 2 Version: 30 ) (Project.2 Name: "infomap.apr" CreationDate: "Tuesday, February 24, 1998 07:04:33" GUIName: "Project" Win: 3 CSMgr: 4 VisGUIWidth: 70 Doc: 5 Doc: 8 Doc: 11 Doc: 14 Doc: 17 Doc: 30 Buttons: 76 Buttons: 77 Buttons: 78 Dependencies: 79 Dependencies: 80 Scripts: 81 Prefs: 82 GUI: 88 WorkDir: 929 WinX: 33 WinY: 170 WinW: 725 WinH: 548 SerialNumber: "709891110684" SelColor: 930 GUINames: 931 GUINames: 932 GUINames: 933 GUINames: 934 GUINames: 935 GUINames: 936 GUINames: 937 ) (DocWin.3 Owner: 2 Open: 1 X: 5 Y: 5 W: 348 H: 318 ) (CSMgr.4 ) (SEd.5 Name: "a.exportBoundary" CreationDate: "Sunday, March 08, 1998 11:48:50" GUIName: "Script" Win: 6 CSMgr: 7 Source: "' Script a.exportBoundary\n' by Robert Cheetham\n' University of Pennsylvania\n' cheetham@pobox.upenn.edu\n' Script write text files compatible with Trevor Bailey and Gatrell's InfoMap\n' spatial statistical product's Boundary file.\n\n' Script takes an Active Polygon Feature Theme as input. If features are selected\n' then they are all that will be exported. If they are not selected, then all\n' polygons will be exported.\n' Please note that since Infomap does not support a very complex spatial data\n' model, such it ems as donut polygons and multiple polygons may not be \n' compatible. This script will not check for these features.\n\n' Also note that InfoMap's native file format is a proprietary binary format. This\n' script will write a file that InfoMap will be capable of importing as text, but will \n' not write a native InfoMap boundary file.\n\n' InfoMap boundary file format does not support attribute data. None of the attribute\n' fields attached to the polygon will be exported. You will need to join these fields\n' to l abel point theme and export these as an InfoMap Data file (see a.exportPoints)\n\n' The script has not been tested with a variety of coordinate systems - you should probably\n' be particularly careful with Decimal Degrees (Lat/Long) as InfoMap does seem to have\n' the ability to deal with decimals to high degrees of precision. Consider transforming\n' the coordinates to State Plane, UTM or other coordinate system before Exporting.\n\ntheView = av.GetActiveDoc\ntheTitle = \"Export Polygon to InfoMap Boundary\"\n\ntheThe me = theView.GetActiveThemes.Get(0)\ntheFTab = theTheme.GetFTab\n\nif (theTheme = nil) then\n MsgBox.Error(\"No Active Theme. Exiting\", theTitle)\n return nil\nend\n\nif (theTheme.Is(FTheme).Not) then\n MsgBox.Error(\"Active Theme is not a Feature Theme\", theTitle)\n return nil\nend\n\n \nif (theFTab.GetShapeClass.GetClassName <> \"POLYGON\") then\n MsgBox.Error(\"Active Theme is not a Polygon Theme. Please select a Polygon Theme and try again.\", theTitle)\n return nil\nend\n\n\n\n' Count up the selected records. if none t hen 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\ntheShapeField = theFtab.FindField(\"Shape\")\n\n' Where to save the new file?\n' Specify the output boundary text file...\noutFName = av.GetProject.MakeFileName(\"boundry\", \"txt\")\noutFName = FileDialog.Put(outFName, \"*.txt\", \"Output Boundary File\")\nif (outFName = Nil) then\n exit\nend\n \n\n' Create the new file\ntheLineFile = LineFile.Make (outFName, #FILE_PERM_WRITE)\n\n\n' The Prep's over - now do the WORK - cycle through the table and save the polygons out\nfor each i in theBitmap\n ' Do the Status thing\n av.ShowMsg (\"Saving Polygons...\")\n av.SetStatus(i/theBitmap.Count*100)\n \n count = 0\n thePolygon = (theFTab.ReturnValue(theShapeField, i)).AsPolygon\n thePointList = thePolygon.AsList.Get(0)\n theCount = thePointList.Count\n theLine = theCount.AsString\n theLineFile.WriteElt(theLine)\n \n for each p in thePointList\n theXVal = p.GetX.AsString\n theYVal = p.GetY.AsString\n theLine = \" \" + theXVal + \" \" + theYVal\n theLineFile.WriteElt(theLine)\n end\n\nend\n\n' close the file\ntheLineFile.Close\n\nav.ClearMsg\nav.ClearStatus\n\nif (unSelectAll=True) then\n theFtab.GetSelection.ClearAll\n theFtab.UpdateSelection\nend\n" ) (DocWin.6 Owner: 5 X: 5 Y: 5 W: 560 H: 307 ) (CSMgr.7 ) (SEd.8 Name: "a.exportPoints" CreationDate: "Sunday, March 08, 1998 11:52:14" GUIName: "Script" Win: 9 CSMgr: 10 Source: "' Script a.exportPoint\n' by Robert Cheetham\n' University of Pennsylvania\n' cheetham@pobox.upenn.edu\n' Script write text files compatible with Trevor Bailey and Gatrell's InfoMap\n' spatial statistical product's Data file.\n\n' Script takes an Active Point Feature Theme as input. If features are selected\n' then they are all that will be exported. If there are no records selected, then all\n' points will be exported.\n\n' Also note that InfoMap's native file format is a proprietary binary format. This\n' script will write a file that InfoMap will be capable of importing as text, but will \n' not write a native InfoMap Data file.\n\n' The script will only export Numeric fields and requires at least one Character field \n' to act as a Label Field. InfoMap is going to prefer a unique key as a label field,\n' though this script will not prevent you from writing non-primary keys as label fields.\n\n' Please note that since Infomap does not support a very complex spatial data\n' model, such items as multi-point features will not be \n' compatible. This script will not check for these features.\n\n' The script will ask save 2 files - one will become the Location file (a Label + x/y)\n' The second will be the Data file (header, label, x/y, and all data fields)\n\ntheView = av.GetActiveDoc\ntheTitle = \"Export Point to InfoMap Data File\"\n\ntheTheme = theView.GetActiveThemes.Get(0)\ntheFTab = theTheme.GetFTab\n\nif (theTheme = nil) then\n MsgBox.Error(\"No Active Theme. Exiting\", theTitle)\n return nil\nend\n\nif (theTheme.Is(FTheme).Not) then\n MsgBo x.Error(\"Active Theme is not a Feature Theme\", theTitle)\n return nil\nend\n\n \nif (theFTab.GetShapeClass.GetClassName <> \"POINT\") then\n MsgBox.Error(\"Active Theme is not a Point Theme. Please select a Point Theme and try again.\", theTitle)\n return nil\nend\n\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 = theF Tab.GetSelection\nend\n\n\n' Get a label field\ntheShapeField = theFtab.FindField(\"Shape\")\ntheFieldList = theFTab.GetFields\nnumberFieldList = List.Make\ncharFieldList = List.Make\nfor each f in theFieldList\n if (f.GetType = #FIELD_CHAR) then\n charFieldList.Add(f)\n end\n \n if ((f.GetType = #FIELD_BYTE) OR (f.GetType = #FIELD_DECIMAL) OR \n (f.GetType = #FIELD_DOUBLE) OR (f.GetType = #FIELD_FLOAT) OR\n (f.GetType = #FIELD_LONG) OR (f.GetType = #FIELD_SHORT)) then\n \n numberFieldList.Add(f)\n end\n \n end\n\n' Get the Unique ID/Label Field\ntheLabelField = MsgBox.List (charFieldList,\n \"Please select a field to use as an unique ID or Label Field\", \"Select ID Field\")\n\nif (theLabelField = nil) then\n msgbox.error (\"No ID Field was selected. Exiting.\",theTitle)\n return nil\nend\n\n\n' Where to save the new files?\n' Specify the output Data text file...\noutFName = av.GetProject.MakeFileName(\"data\", \"txt\")\noutFName = FileDialog.Put(outFName, \"*.txt\", \"Output Data Text File\")\nif (outFName = Nil) then\n exit\nend\n \n\n ' Create new Data File\ntheDataLineFile = LineFile.Make(outFName, #FILE_PERM_WRITE)\n\n\n' Specify the output Locations text file...\noutFName = av.GetProject.MakeFileName(\"locat\", \"txt\")\noutFName = FileDialog.Put(outFName, \"*.txt\", \"Output Location Text File\")\nif (outFName = Nil) then\n exit\nend\n \n' Create new Location File\ntheLocLineFile = LineFile.Make(outFName, #FILE_PERM_WRITE)\n\n\n\n' Write the Field Names to the Data File\n' For some reason, the 'Label' field name doesn't get written to the header\ntheDataLin eFile.WriteElt(\"'Easting'\")\ntheDataLineFile.WriteElt(\"'Northing'\")\n\nfor each f in numberFieldList\n theDataLineFile.WriteElt(\"'\" + f.GetName + \"'\")\nend\n\n\n' We go through all the points once to get the maximum string length of\n' the X and Y. InfoMap needs perfect columns.\nMaxX = 0\nMaxY = 0\nfor each i in theBitmap\n ' Do the Status thing\n av.ShowMsg (\"Checking Points...\")\n av.SetStatus(i/theBitmap.Count*100)\n\n thePoint = (theFTab.ReturnValue(theShapeField, i))\n theXLen = thePoint.GetX.AsString.Count\n the YLen = thePoint.GetY.AsString.Count\n if (theXLen > MaxX) then\n MaxX = theXLen\n end\n if (theYLen > MaxY) then\n MaxY = theYLen\n end\nend\n\n\n' The Prep's over - now do the WORK - cycle through the table and save the points out\nfor each i in theBitmap\n ' Do the Status thing\n av.ShowMsg (\"Saving Points...\")\n av.SetStatus(i/theBitmap.Count*100)\n\n thePoint = (theFTab.ReturnValue(theShapeField, i))\n theLabel = theFTab.ReturnValue(theLabelField, i)\n theEasting = thePoint.GetX.AsString\n theNorthing = t hePoint.GetY.AsString\n \n 'Get the first Label Buffer\n theBuffer = theLabelField.GetWidth - theLabel.Count\n theLabBufStr = \"\"\n for each x in 1..theBuffer\n theLabBufStr = theLabBufStr + \" \"\n end\n\n 'Get the XBufStr and YBufStr\n XBufStr = \"\"\n YBufStr = \"\"\n if (MaxX > theEasting.Count) then\n for each x in 1..(MaxX - theEasting.Count)\n XBufStr = XBufStr + \" \"\n end\n end\n if (MaxY > theNorthing.Count) then\n for each x in 1..(MaxY - theNorthing.Count)\n YBufStr = YBufStr + \" \"\n en d\n end\n\n 'Put together the Lccation Line (also the first part of the Data Line)\n theLine = \"\"\n theLine = \"'\" + theLabel + theLabBufStr + \"'\" + XBufStr + \" \" + theEasting + YBufStr + \" \" + theNorthing\n \n \n 'Write to the Location File\n theLocLineFile.WriteElt(theLine)\n \n \n 'Now get the attribute data and add it to theLine\n for each f in numberFieldList\n ' First get a width and buffer\n theWidth = f.GetWidth\n theValueStr = theFTab.ReturnValue(f, i).AsString\n \n 'Check to see if num ber too long, (uses 'e' as Scientific notation)\n if (theValueStr.Contains(\"e\")) then\n theValueStr = theFTab.ReturnValue(f, i).SetFormat(\"d.d\").AsString\n end\n \n theBuffer = theWidth - theValueStr.Count\n ValBufStr = \"\"\n for each x in 1..theBuffer\n ValBufStr = ValBufStr + \" \"\n end\n theLine = theLine + ValBufStr + \" \" + theValueStr\n end\n\n 'Write to the Data File\n theDataLineFile.WriteElt(theLine)\nend\n\nav.ClearMsg\nav.ClearStatus\n\n\nmsgBox.Report (\"The point theme has been expo rted.\" + NL +\n \"Your Location File was called '\" + theLocLineFile.GetName + \"'\" + NL +\n \"Your Data File was called '\" + theDataLineFile.GetName + \"'\", theTitle)\n \n\n' close the files\ntheLocLineFile.Close\ntheDataLineFile.Close\n\nif (unSelectAll=True) then\n theFtab.GetSelection.ClearAll\n theFtab.UpdateSelection\nend\n\n\n" ) (DocWin.9 Owner: 8 X: 20 Y: 20 W: 591 H: 330 ) (CSMgr.10 ) (SEd.11 Name: "a.importBoundary" CreationDate: "Tuesday, February 24, 1998 08:16:45" GUIName: "Script" Win: 12 CSMgr: 13 Source: "' Note: Infomap will not export a single boundary but duplicate it several times\n' This script will read the *first* polygon and draw it. No more.\n\nMsgBox.Info (\"This script will import a TEXT file version of a Boundary file\"+NL+\n \"exported from InfoMap. The result will be a shapefile. Please\"+NL+\n \"note that the InfoMap export procedure has a bug that results in\"+NL+\n \"a file with several repetitions of the polygon. This script will\"+NL+\n \"only import the FIRST polygon in the text file.\",\"Import Info map Boundary File\")\n\n\n' Check if you want single polygon or multiple polygons\nmultiple = MsgBox.YesNo (\"Will you be importing a multiple polygon boundary file?\",\n \"Multiple Polygons?\",FALSE)\n \n'Get the boundary export file\npatterns = {\"*.txt\"}\nlabels = {\"Text (*.txt)\"}\nfiles = FileDialog.ReturnFiles(patterns, labels, \"Import Boundary File\", 0)\nif (files.Count=0) then\n return nil\nend\n\ntheTextFileName = files.Get(0)\n\n\n\n' Specify the output shapefile...\noutFName = av.GetProject.MakeFileName(\"theme\", \"shp\")\n outFName = FileDialog.Put(outFName, \"*.shp\", \"Output Polygon Shapefile\")\nif (outFName = Nil) then\n exit\nend\n \n' Add Area Field & Perimeter Fields\ntheWidth = 12\nthePrecis = 4\nAreaField = Field.Make(\"Area\", #FIELD_DOUBLE, theWidth, thePrecis)\ntheWidth = 12\nPerimField = Field.Make(\"Perimeter\", #FIELD_DOUBLE, theWidth, thePrecis)\n\n' create the new shapefile\noutClass = POLYGON\nimportFTab = FTab.MakeNew( outFName, outClass )\nimportFTab.AddFields({AreaField, PerimField})\n\nshapeField = importFTab.FindField(\"Shape \")\n\n'save the file\nimportFTab.SetEditable(FALSE)\n\n\n' Open the Input File\ntheTextFile = LineFile.Make (theTextFileName, #FILE_PERM_READ)\n\n'get the number of points in the boundary\nthePointNum = theTextFile.ReadElt\n\n\nif (thePointNum.AsTokens(\"1234567890. \").Count>0) then\n MsgBox.Warning(\"The TEXT file you have selected is not a valid InfoMap boundary\"++\n \"export file. Please check the file and try again.\",\"\")\n theTextFile.Close\n return nil\nend\n\nthePolygonList = {}\ntheAreaList = {}\nthePerimList = {}\n\n\ni = 0\nWhile (i=0)\n av.ShowMsg(\"Getting Polygons...\")\n 'make a shape\n thePointList = {}\n for each p in 1..thePointNum.Trim.AsNumber\n \n theLine = theTextFile.ReadElt\n 'parse the line to two elements\n theXY = theLine.AsTokens (\" \")\n theXCoord = theXY.Get(0).Trim.AsNumber\n theYCoord = theXY.Get(1).Trim.AsNumber\n thePoint = Point.Make(theXCoord,theYCoord)\n thePointList.Add(thePoint)\n end ' for p\n \n thePolygon = Polygon.Make({thePointList})\n theArea = thePolygon.ReturnArea\n thePerim = thePolygon.ReturnLength\n\n thePolygonList.Add (thePolygon)\n theAreaList.Add(theArea)\n thePerimList.Add(thePerim)\n\n if ((theTextFile.IsAtEnd) OR (multiple = FALSE)) then\n i = 1\n else \n thePointNum = theTextFile.ReadElt\n end\n \nend 'End the Do While Loop\n\n' Close up the source of the data\ntheTextFile.Close\n \n\n're-open the file\nimportFTab.SetEditable(TRUE)\n\nfor each p in 0..(thePolygonList.Count - 1)\n av.ShowMsg(\"Saving Polygons...\")\n\n newRec = importFTab.AddRecord\n \n importFTab.SetValue( shapeField, newrec, thePolygonList.Get(p))\n importFTab.SetValue(areaField, newrec, theAreaList.Get(p))\n importFTab.SetValue(perimField, newrec, thePerimList.Get(p))\nend\n \n'save the new boundary file\nimportFTab.SetEditable(FALSE)\n\n\n\nav.ClearMsg\nav.ClearStatus\n\n\n\nif (MsgBox.YesNo(\"Add shapefile as theme to a view?\",\n \"Import MapInfo Boundary\", 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.GetPro ject.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:\", \"Import MapInfo Boundary\" ) \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 importTheme = FTheme.Make( importFTab )\n addToView.AddTheme( importTheme )\n\n ' Bring the View to the front...\n addToView.GetWin.Activate\nend\n\n" FontSize: 1 ) (DocWin.12 Owner: 11 X: 53 W: 586 H: 404 ) (CSMgr.13 ) (SEd.14 Name: "a.importData" CreationDate: "Tuesday, February 24, 1998 07:07:01" GUIName: "Script" Win: 15 CSMgr: 16 Source: "MsgBox.Info (\"This script will import a TEXT file version of a Data file\"+NL+\n \"exported from InfoMap. The result will be a point shapefile.\"+NL+\n \"Note: This script only supports TEXT and NUMBER field types.\",\"Import Infomap Boundary File\")\n \n\n\npatterns = {\"*.txt\"}\nlabels = {\"Text (*.txt)\"}\nfiles = FileDialog.ReturnFiles(patterns, labels, \"Import Infomap Data Table\", 0)\nif (files.Count=0) then\n exit\nend\n\n\n' Specify the output shapefile...\noutFName = av.GetProject.MakeFileName(\"theme\", \"shp\")\noutFName = FileDialog.Put(outFName, \"*.shp\", \"Output Point Shapefile\")\nif (outFName = Nil) then\n exit\nend\n \n' Open up that import file\ntheTextFileName = files.Get(0)\ntheTextFile = LineFile.Make (theTextFileName, #FILE_PERM_READ)\ntheSize = theTextFile.GetSize\n\n\nfieldNameList = List.Make\nfieldList = List.Make\nlineElements = List.Make\n\n\n' Get the contents of the first several lines that contain the field names.\n' Leave off with the contents of the first line in theLine\ni = 0\nWhile (i=0)\n theLine = theTextFile.ReadElt \n lineElements = theLine.AsTokens(\"'\")\n if (lineElements.Count = 1) then\n theSize = theSize - 1\n fieldName = lineElements.Get(0)\n fieldNameList.Add(fieldName)\n else\n i=1\n end 'if\nend 'Do While\n\n\n' Now we have the contents of the first real data line in theLine, so get its elements\n\n\n' If there are labels, the first element will contain (') so insert \n' this at beginning of list of field names\nlblCheck = 0\nlineElements = theLine.AsTokens(\" \")\n\nif (lineElements.Get(0).Contains(\"'\")) then\n fieldNameList.Insert (\"Label\")\n lblCheck= 1\nend\n\n' So now we have a list of fieldName, so the next step is to add Width, Precision and Type\nlineElements = theLine.AsTokens(\" '\")\n\nfor each f in 0..(fieldNameList.Count - 1)\n element = lineElements.Get(f)\n if (fieldNameList.Get(f)=\"Label\") then\n fieldWidth = 24\n fieldPrec = 0\n fieldType = #FIELD_CHAR\n else\n fieldWidth = element.Count\n if (fieldWidth < 10) then\n fieldWidth = 10\n end\n fieldPrec = (element.count-1) - (element.IndexO f (\".\"))\n if (fieldPrec = -1) then\n fieldPrec = 0\n end\n fieldType = #FIELD_DECIMAL \n end\n theField = Field.Make(fieldNameList.Get(f),fieldType,fieldWidth,fieldPrec)\nfieldList.Add(theField)\nend\n\n' create the new shapefile\noutClass = POINT\nimportFTab = FTab.MakeNew( outFName, outClass )\n\n\nif (fieldList.Count > 0) then\n importFTab.AddFields(fieldList)\nend\n\n\n'loop through each record and get the value, putting it in each field\ni = 0\nWhile (i=0)\n\n rec = importFTab.AddRecord\n\n if (lblCheck = 1) then\n lblElement = lineElements.Get(0)\n 'Check for second word in two word labels\n if (lineElements.Get(1).AsTokens(\"-1234567890.\").Count>0) then\n lblElement = lblElement ++ lineElements.Get(1)\n lineElements.Remove(1)\n end\n 'Check for third word in three word labels\n if (lineElements.Get(1).AsTokens(\"-1234567890.\").Count>0) then\n lblElement = lblElement ++ lineElements.Get(1)\n lineElements.Remove(1)\n end\n \n importFTab.SetValue(importFTab.FindField(\"Label\"),rec ,lblElement)\n end\n \n Xcoord = lineElements.Get(lblCheck).AsNumber\n Ycoord = lineElements.Get(1+lblCheck).AsNumber\n thePoint = Point.Make (Xcoord,Ycoord)\n importFTab.SetValue (importFTab.FindField(\"Shape\"),rec,thePoint)\n \n for each f in lblCheck..(fieldNameList.Count - 1)\n \n element = lineElements.Get(f).AsNumber\n importFTab.SetValue(importFTab.FindField(fieldNameList.Get(f)),rec,element)\n \n end 'the for_next loop on each record's elements\n \n ' increment the line of the incoming text file\n if (theTextFile.IsAtEnd) then\n i=1\n else\n theLine = theTextFile.ReadElt\n lineElements = theLine.AsTokens(\" '\")\n end\nend ' the for_next loop on records\n\ntheTextFile.Close\nimportFTab.SetEditable(False)\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:\", \"Import InfoMap Data File\" ) \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 importTheme = FTheme.Make( importFTab )\n addToView.AddTheme( importTheme )\n\n ' Bring the View to the front...\n addToView.GetWin.Activate\nend\n\n" SearchStr: "theLineElements" FontSize: 1 ) (DocWin.15 Owner: 14 X: 51 Y: 13 W: 563 H: 318 ) (CSMgr.16 ) (View.17 Name: "Import/Export Infomap Data" Creator: "Robert Cheetham" CreationDate: "Tuesday, February 24, 1998 08:53:25" GUIName: "View" Win: 18 CSMgr: 19 DocExts: 20 Graphics: 23 Dpy: 24 TOCWidth: 150 ) (DocWin.18 Owner: 17 X: 133 Y: 4 W: 643 H: 417 ) (CSMgr.19 ) (SpAnEnv.20 CellEnum: 21 CellSize: 22 ExtEnum: 21 Extent: 22 ) (AVEnum.21 Name: "ANALYSISENV_MAXOF" ) (Nil.22 ) (GList.23 Dpy: 24 FormatNumb: 29 ) (MapDpy.24 Left: 41.09999999999996 Bottom: 94.14999999999998 Top: 750.85000000000002 Right: 984.90000000000009 Scale: 25 FrameTop: 4.01041666666667 FrameRight: 4.97916666666667 PageDpy: 26 FitToPage: 1 MouseLoc: 28 ) (Numb.25 N: 0.00527565868475 ) (PageDpy.26 Top: 4.01041666666667 Right: 4.97916666666667 ReportUnits: 1 Units: 1 Scale: 27 ZoomRight: 4.97916666666667 ZoomTop: 4.01041666666667 GridSpacingX: 0.25000000000000 GridSpacingY: 0.25000000000000 ) (Numb.27 N: 0.20083682008368 ) (PointD.28 x: 574.20878661087863 y: 652.52656903765705 ) (Numb.29 ) (View.30 Name: "View1" CreationDate: "Monday, March 30, 1998 06:43:55" GUIName: "View" Win: 31 CSMgr: 32 DocExts: 33 Graphics: 36 Theme: 43 Dpy: 37 TOCWidth: 150 ) (DocWin.31 Owner: 30 X: 5 Y: 5 W: 478 H: 282 ) (CSMgr.32 ) (SpAnEnv.33 CellEnum: 34 CellSize: 35 ExtEnum: 34 Extent: 35 ) (AVEnum.34 Name: "ANALYSISENV_MAXOF" ) (Nil.35 ) (GList.36 Dpy: 37 FormatNumb: 42 ) (MapDpy.37 Left: 190.89999999999998 Bottom: 122.34999999999998 Top: 532.64999999999998 Right: 567.10000000000002 Scale: 38 FrameTop: 2.60416666666667 FrameRight: 3.26041666666667 PageDpy: 39 FitToPage: 1 MouseLoc: 41 ) (Numb.38 N: 0.00634698188317 ) (PageDpy.39 Top: 2.60416666666667 Right: 3.26041666666667 ReportUnits: 1 Units: 1 Scale: 40 ZoomRight: 3.26041666666667 ZoomTop: 2.60416666666667 GridSpacingX: 0.25000000000000 GridSpacingY: 0.25000000000000 ) (Numb.40 N: 0.30670926517572 ) (PointD.41 x: 151.69380000000001 y: 421.04839999999996 ) (Numb.42 ) (FTheme.43 Name: "Data1.shp" Source: 44 Flags: 0x05 Legend: 58 Threshold: 73 View: 30 GSet: 74 LegEditScript: "View.EditLegend" TxPos: 75 LabelField: 49 ) (ShpSrc.44 Name: 45 FTab: 47 ) (SrcName.45 FileName: 46 Name: "data1.shp" SubName: "Point" OwnerClass: "ShpSrc" ) (FN.46 Path: "c:/sys502/arcview/data/data1.shp" ) (FTab.47 Name: "data1.dbf" BTab: 48 Fields: 56 Fields: 49 Fields: 50 Fields: 51 Fields: 52 Fields: 53 Fields: 54 SelBits: 57 FSrc: 44 ) (dBASE.48 Name: "data1.dbf" Fields: 49 Fields: 50 Fields: 51 Fields: 52 Fields: 53 Fields: 54 FileName: 55 ) (Field.49 Name: "Label" Btab: 48 Alias: "Label" Visible: 1 Type: 4 Order: -1 Pixels: 149 ) (Field.50 Name: "Easting" Btab: 48 Alias: "Easting" Visible: 1 Type: 9 Order: -1 Pixels: 65 ) (Field.51 Name: "Northing" Btab: 48 Alias: "Northing" Visible: 1 Type: 9 Order: -1 Pixels: 65 ) (Field.52 Name: "Elevation" Btab: 48 Alias: "Elevation" Visible: 1 Type: 9 Order: -1 Pixels: 65 ) (Field.53 Name: "Aug91temp" Btab: 48 Alias: "Aug91temp" Visible: 1 Type: 9 Order: -1 Pixels: 65 ) (Field.54 Name: "Aug81temp" Btab: 48 Alias: "Aug81temp" Visible: 1 Type: 9 Order: -1 Pixels: 65 ) (FN.55 Path: "c:/sys502/arcview/data/data1.dbf" ) (Field.56 Name: "Shape" Alias: "Shape" Visible: 1 Type: 17 Order: -1 Pixels: 41 ) (Bitmap.57 NumBits: 48 ) (Legend.58 LegType: 0x01 ClassType: 0x03 Symbols: 59 Class: 67 StdDevs: 1.00000000000000 NullSym: 68 NullValues: 71 StatValues: 72 Precision: -3 ) (SymList.59 Child: 60 ) (BMkSym.60 Color: 61 BgColor: 62 Font: 63 Size: 8.00000000000000 Pattern: 35 Angle: 360.00000000000000 ) (TClr.61 Red: 0x136e Green: 0xcac0 Blue: 0xc784 ) (TClr.62 Name: "Transparent" ) (NFont.63 Family: 64 Name: 65 Style: 66 Weight: 1 Wideness: 1 ) (AVStr.64 S: "ESRI Geometric Symbols" ) (AVStr.65 S: "ESRI Geometric Symbols" ) (AVStr.66 S: "Normal" ) (LClass.67 IsText: 1 Precision: -3 ) (BMkSym.68 Color: 69 BgColor: 70 Font: 63 Size: 8.00000000000000 Pattern: 35 Angle: 360.00000000000000 ) (TClr.69 Name: "Transparent" ) (TClr.70 Name: "Transparent" ) (NameDict.71 ) (NameDict.72 ) (Thresh.73 ) (GSet.74 ) (TxPosPt.75 HAlign: 4 VAlign: 3 ) (LButn.76 HelpTopic: "New_button" Update: "Doc.NewUpdate" Label: "&New" Click: "Table.New" ) (LButn.77 Disabled: 1 HelpTopic: "Open_button" Update: "Doc.OpenUpdate" Label: "&Open" Click: "Doc.Open" ) (LButn.78 HelpTopic: "Add_button" Update: "Table.ActionUpdate" Label: "&Add" Click: "Table.Action" ) (FN.79 Path: "$AVEXT/spacestat.avx" ) (FN.80 Path: "$AVEXT/spatial.avx" ) (NameDict.81 ) (NameDict.82 Obj: 83 ) (AVDict.83 InternalName: "Spatial Analyst" Key: 84 Key: 85 Value: 86 Value: 87 ) (AVStr.84 S: "Loaded" ) (AVStr.85 S: "Version" ) (Bool.86 Truth: 1 ) (Numb.87 N: 1.00000000000000 ) (DocGUI.88 Name: "View" Type: "View" Modified: 1 Visible: 1 MenuBar: 89 ButnBar: 247 Popups: 304 ToolBar: 323 NewScript: "View.New" OpenScript: "Doc.Open" ActionScript: "Doc.Action" NewUpdateScript: "Doc.NewUpdate" OpenUpdateScript: "Doc.OpenUpdate" ActionUpdateScript: "Doc.ActionUpdate" Title: "Views" Icon: 378 ) (MenuBar.89 Child: 90 Child: 106 Child: 126 Child: 147 Child: 173 Child: 197 Child: 232 Child: 242 ) (PMenu.90 InternalName: "File" Child: 91 Child: 92 Child: 93 Child: 94 Child: 95 Child: 96 Child: 97 Child: 98 Child: 99 Child: 100 Child: 101 Child: 102 Child: 103 Child: 104 Child: 105 Label: "&File" ) (Choice.91 Help: "Closes the active component" HelpTopic: "Close" Label: "&Close" Click: "Project.CloseDoc" Shortcut: "Keys.None" ) (Choice.92 Help: "Closes all components" HelpTopic: "Close_All" Label: "Close &All" Click: "Project.CloseAll" Shortcut: "Keys.None" ) (Space.93 ) (Choice.94 Help: "Allows you to specify the current working directory" HelpTopic: "Set_Working_Directory" Label: "Set &Working Directory..." Click: "Project.SetProjectWorkDir" Shortcut: "Keys.None" ) (Choice.95 Help: "Saves the current project" HelpTopic: "Save_Project" Label: "&Save Project" Click: "Project.Save" Shortcut: "Keys.Ctrl+S" ) (Space.96 ) (Choice.97 Help: "Prints the view" HelpTopic: "Print" Label: "&Print..." Click: "View.Print" Shortcut: "Keys.None" ) (Choice.98 Help: "Edits the printer and the printing options" HelpTopic: "Print_Setup" Label: "P&rint Setup..." Click: "Project.PrintSetup" Shortcut: "Keys.None" ) (Choice.99 Disabled: 1 Help: "Exports the view" HelpTopic: "Export" Update: "View.HasThemesUpdate" Label: "&Export..." Click: "View.ExportDisp" Shortcut: "Keys.None" ) (Space.100 ) (Choice.101 InternalName: "spatial" Help: "Displays the dialog box to delete, edit, and copy grid data sets" HelpTopic: "Manage_Grids@spatial.hlp" Label: "&Manage Grids..." Click: "Spatial.ManageGrids" Shortcut: "Keys.None" ) (Choice.102 InternalName: "spatial" Help: "Imports ASCII, binary, DEM, and DTED files to grid data sets" HelpTopic: "Import_Grids@spatial.hlp" Label: "&Import Grids..." Click: "Spatial.Import" Shortcut: "Keys.None" ) (Choice.103 InternalName: "spatial" Help: "Exports grid data sets to ASCII or binary files" HelpTopic: "Export_Grids@spatial.hlp" Label: "Export &Grids..." Click: "Spatial.Export" Shortcut: "Keys.None" ) (Space.104 InternalName: "spatial" ) (Choice.105 Help: "Exits ArcView" HelpTopic: "Exit" Label: "E&xit" Click: "Project.Exit" Shortcut: "Keys.None" ) (PMenu.106 InternalName: "Edit" Child: 107 Child: 108 Child: 109 Child: 110 Child: 111 Child: 112 Child: 113 Child: 114 Child: 115 Child: 116 Child: 117 Child: 118 Child: 119 Child: 120 Child: 121 Child: 122 Child: 123 Child: 124 Child: 125 Label: "&Edit" ) (Choice.107 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.108 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.109 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.110 ) (Choice.111 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.112 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.113 ) (Choice.114 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.115 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.116 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.117 ) (Choice.118 Disabled: 1 Help: "Combines the selected polygons" HelpTopic: "Combine_Graphics" Update: "View.CombineUpdate" Label: "Com&bine Graphics" Click: "View.CombineGraphics" Shortcut: "Keys.None" ) (Choice.119 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.120 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.121 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.122 ) (Choice.123 Disabled: 1 Help: "Inserts the contents of the clipboard" HelpTopic: "Paste" Update: "View.PasteUpdate" Label: "&Paste" Click: "View.Paste" Shortcut: "Keys.Ctrl+V" ) (Space.124 ) (Choice.125 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.126 InternalName: "View" Child: 127 Child: 128 Child: 129 Child: 130 Child: 131 Child: 132 Child: 133 Child: 134 Child: 135 Child: 136 Child: 137 Child: 138 Child: 139 Child: 140 Child: 141 Child: 142 Child: 143 Child: 144 Child: 145 Child: 146 Label: "&View" ) (Choice.127 Help: "Displays the dialog box to edit properties of the view" HelpTopic: "View_Properties" Label: "&Properties..." Click: "View.Properties" Shortcut: "Keys.None" ) (Space.128 ) (Choice.129 Help: "Inserts themes into the view" HelpTopic: "Add_Theme" Label: "&Add Theme..." Click: "View.Add" Shortcut: "Keys.Ctrl+T" ) (Choice.130 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.131 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.132 Help: "Creates a new theme" HelpTopic: "New_Theme" Label: "&New Theme..." Click: "View.NewTheme" Shortcut: "Keys.None" ) (Choice.133 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.134 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.135 ) (Choice.136 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.137 ) (Choice.138 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.139 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.140 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.141 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.142 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.143 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.144 ) (Choice.145 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.146 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.147 InternalName: "Theme" Child: 148 Child: 149 Child: 150 Child: 151 Child: 152 Child: 153 Child: 154 Child: 155 Child: 156 Child: 157 Child: 158 Child: 159 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: "&Theme" ) (Choice.148 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.149 ) (Choice.150 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.151 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.152 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.153 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" ) (Choice.154 InternalName: "spatial" Disabled: 1 Help: "Converts themes to grid themes" HelpTopic: "Convert_to_Grid@spatial.hlp" Update: "Spatial.ConvertToGridUpdate" Label: "Convert to &Grid..." Click: "Spatial.ConvertToGrid" Shortcut: "Keys.None" ) (Choice.155 InternalName: "spatial" Disabled: 1 Help: "Saves the data set associated with a grid theme as a permanent data set" HelpTopic: "Save_Data_Set@spatial.hlp" Update: "Spatial.SaveDataSetUpdate" Label: "Sa&ve Data Set..." Click: "Spatial.SaveDataSet" Shortcut: "Keys.Ctrl+D" ) (Space.156 ) (Choice.157 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.158 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.159 ) (Choice.160 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.161 ) (Choice.162 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.163 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.164 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.165 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.166 ) (Choice.167 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.168 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.169 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.170 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" ) (Space.171 InternalName: "spatial" ) (Choice.172 InternalName: "spatial" Disabled: 1 Help: "Brings up the map query builder or map calculator associated with a grid theme" HelpTopic: "Edit_Theme_Expression@spatial.hlp" Update: "Spatial.EditExpressionUpdate" Label: "Edit The&me Expression..." Click: "Spatial.EditExpression" Shortcut: "Keys.Ctrl+E" ) (PMenu.173 InternalName: "Spatial" Child: 174 Child: 175 Child: 176 Child: 177 Child: 178 Child: 179 Child: 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 Label: "&Analysis" ) (Choice.174 InternalName: "spatial" Disabled: 1 Help: "Displays the dialog box to edit the analysis properties" HelpTopic: "Analysis_Properties@spatial.hlp" Update: "View.HasThemesUpdate" Label: "&Properties..." Click: "Spatial.AnalysisProperties" Shortcut: "Keys.None" ) (Space.175 InternalName: "spatial" ) (Choice.176 InternalName: "spatial" Disabled: 1 Help: "Finds continuous distances from features in a theme" HelpTopic: "Find_Distance@spatial.hlp" Update: "Spatial.HasActiveIntegerGridOrFeatureThemeUpdate" Label: "Find &Distance" Click: "Spatial.Distance" Shortcut: "Keys.None" ) (Choice.177 InternalName: "spatial" Disabled: 1 Help: "Creates zones of proximity for features in a theme" HelpTopic: "Assign_Proximity@spatial.hlp" Update: "Spatial.HasActiveIntegerGridOrFeatureThemeUpdate" Label: "Assign Pro&ximity" Click: "Spatial.Proximity" Shortcut: "Keys.None" ) (Space.178 InternalName: "spatial" ) (Choice.179 InternalName: "spatial" Disabled: 1 Help: "Creates a density surface from a point theme" HelpTopic: "Calculate_Density@spatial.hlp" Update: "Spatial.DensityUpdate" Label: "Calculate D&ensity..." Click: "Spatial.Density" Shortcut: "Keys.None" ) (Space.180 InternalName: "spatial" ) (Choice.181 InternalName: "spatial" Disabled: 1 Help: "Creates a continuous surface from a point theme" HelpTopic: "Interpolate_Surface@spatial.hlp" Update: "Spatial.SurfaceUpdate" Label: "Interpolate S&urface..." Click: "Spatial.Surface" Shortcut: "Keys.None" ) (Choice.182 InternalName: "spatial" Disabled: 1 Help: "Derives slope from a grid theme" HelpTopic: "Derive_Slope@spatial.hlp" Update: "Spatial.HasActiveGridThemeUpdate" Label: "Derive &Slope" Click: "Spatial.Slope" Shortcut: "Keys.None" ) (Choice.183 InternalName: "spatial" Disabled: 1 Help: "Derives aspect from a grid theme" HelpTopic: "Derive_Aspect@spatial.hlp" Update: "Spatial.HasActiveGridThemeUpdate" Label: "Derive &Aspect" Click: "Spatial.Aspect" Shortcut: "Keys.None" ) (Choice.184 InternalName: "spatial" Disabled: 1 Help: "Computes hillshade values for a grid theme" HelpTopic: "Compute_Hillshade@spatial.hlp" Update: "Spatial.HasActiveGridThemeUpdate" Label: "Compute Hi&llshade..." Click: "Spatial.Hillshade" Shortcut: "Keys.None" ) (Choice.185 InternalName: "spatial" Disabled: 1 Help: "Creates contours from a point or grid theme" HelpTopic: "Create_Contours@spatial.hlp" Update: "Spatial.HasActiveGridOrNumericPointThemeUpdate" Label: "Create C&ontours..." Click: "Spatial.Contour" Shortcut: "Keys.None" ) (Space.186 InternalName: "spatial" ) (Choice.187 InternalName: "spatial" Disabled: 1 Help: "Calculates a statistic for multiple grid themes" HelpTopic: "Cell_Statistics@spatial.hlp" Update: "Spatial.CellStatisticsUpdate" Label: "&Cell Statistics..." Click: "Spatial.CellStatistics" Shortcut: "Keys.None" ) (Choice.188 InternalName: "spatial" Disabled: 1 Help: "Summarizes values in a grid theme within the zones of another theme" HelpTopic: "Summarize_Zones@spatial.hlp" Update: "Spatial.ZoneOperationUpdate" Label: "Summarize &Zones..." Click: "Spatial.SummarizeZones" Shortcut: "Keys.None" ) (Choice.189 InternalName: "spatial" Disabled: 1 Help: "Creates a histogram distribution of a grid theme for each zone in another theme" HelpTopic: "Histogram_By_Zone@spatial.hlp" Update: "Spatial.ZoneOperationUpdate" Label: "&Histogram By Zone..." Click: "Spatial.ZoneHistogram" Shortcut: "Keys.None" ) (Choice.190 InternalName: "spatial" Disabled: 1 Help: "Tabulates the area of one theme within the zones of another theme" HelpTopic: "Tabulate_Areas@spatial.hlp" Update: "Spatial.TabulateAreasUpdate" Label: "&Tabulate Areas..." Click: "Spatial.TabulateAreas" Shortcut: "Keys.None" ) (Choice.191 InternalName: "spatial" Disabled: 1 Help: "Performs spatial selection on multiple grid themes" HelpTopic: "Map_Query@spatial.hlp" Update: "Spatial.HasGridThemeUpdate" Label: "Map &Query..." Click: "Spatial.Query" Shortcut: "Keys.None" ) (Choice.192 InternalName: "spatial" Disabled: 1 Help: "Displays the dialog box to create a grid theme with an algebraic statement" HelpTopic: "Map_Calculator@spatial.hlp" Update: "Spatial.HasGridThemeUpdate" Label: "&Map Calculator..." Click: "Spatial.Calculator" Shortcut: "Keys.None" ) (Space.193 InternalName: "spatial" ) (Choice.194 InternalName: "spatial" Disabled: 1 Help: "Calculates a statistic on a grid or point theme over a specified neighborhood" HelpTopic: "Neighborhood_Statistics@spatial.hlp" Update: "Spatial.HasActiveGridOrNumericPointThemeUpdate" Label: "&Neighborhood Statistics..." Click: "Spatial.NbrStatistics" Shortcut: "Keys.None" ) (Space.195 InternalName: "spatial" ) (Choice.196 InternalName: "spatial" Disabled: 1 Help: "Reclassifies the values in a grid theme" HelpTopic: "Reclassify@spatial.hlp" Update: "Spatial.HasActiveGridThemeUpdate" Label: "&Reclassify..." Click: "Spatial.Reclassify" Shortcut: "Keys.None" ) (PMenu.197 InternalName: "Graphics" Child: 198 Child: 199 Child: 200 Child: 201 Child: 202 Child: 203 Child: 204 Child: 205 Child: 206 Child: 207 Child: 208 Child: 209 Child: 210 Label: "&Graphics" ) (Choice.198 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.199 ) (Choice.200 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.201 Disabled: 1 Help: "Aligns the selected graphics" HelpTopic: "Align" Update: "Graphic.HasSelectionUpdate" Label: "&Align..." Click: "Graphic.Align" Shortcut: "Keys.Ctrl+A" ) (Space.202 ) (Choice.203 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.204 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.205 Disabled: 1 Help: "Groups selected graphics" HelpTopic: "Group_on_a_view" Update: "Graphic.GroupUpdate" Label: "&Group" Click: "Graphic.Group" Shortcut: "Keys.Ctrl+G" ) (Choice.206 Disabled: 1 Help: "Ungroups selected graphics" HelpTopic: "Ungroup_on_a_view" Update: "Graphic.UngroupUpdate" Label: "&Ungroup" Click: "Graphic.Ungroup" Shortcut: "Keys.Ctrl+U" ) (Space.207 ) (Choice.208 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.209 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.210 ) (PMenu.232 InternalName: "Window" Child: 233 Child: 234 Child: 235 Child: 236 Child: 237 Child: 238 Child: 240 Child: 241 Label: "&Window" ) (Choice.233 Help: "Arranges windows as non-overlapping tiles" HelpTopic: "Tile" Label: "&Tile" Click: "Project.Tile" Shortcut: "Keys.None" ) (Choice.234 Help: "Arranges windows" HelpTopic: "Cascade" Label: "&Cascade" Click: "Project.Cascade" Shortcut: "Keys.None" ) (Choice.235 Help: "Arranges iconified windows" HelpTopic: "Arrange_Icons" Label: "&Arrange Icons" Click: "Project.ArrangeIcons" Shortcut: "Keys.None" ) (Space.236 ) (Choice.237 Help: "Shows the symbol window" HelpTopic: "Show_Symbol_Window" Label: "Show Symbol Window..." Click: "Project.ShowHideSymWin" Shortcut: "Keys.Ctrl+P" ) (Space.238 ObjectTag: 239 Update: "WindowMenuUpdate" ) (AVStr.239 S: "infomap.apr Import/Export Infomap Data" ) (Choice.240 Help: "Activates infomap.apr" Label: "&1 infomap.apr" Click: "WindowActivate" Shortcut: "Keys.None" ) (Choice.241 Help: "Activates Import/Export Infomap Data" Label: "&2 Import/Export Infomap Data" Click: "WindowActivate" Shortcut: "Keys.None" ) (PMenu.242 InternalName: "Help" Child: 243 Child: 244 Child: 245 Child: 246 Label: "&Help" ) (Choice.243 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.244 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.245 ) (Choice.246 Help: "Provides information about ArcView" HelpTopic: "About" Label: "&About ArcView..." Click: "Project.About" Shortcut: "Keys.None" ) (ButnBar.247 Child: 248 Child: 250 Child: 251 Child: 253 Child: 254 Child: 256 Child: 258 Child: 260 Child: 261 Child: 263 Child: 265 Child: 267 Child: 268 Child: 270 Child: 272 Child: 274 Child: 276 Child: 278 Child: 280 Child: 281 Child: 283 Child: 287 Child: 288 Child: 290 Child: 291 Child: 293 Child: 294 Child: 295 Child: 297 Child: 299 Child: 300 Child: 302 ) (Butn.248 Help: "Save Project//Saves the current project" HelpTopic: "Save_Project" Icon: 249 Click: "Project.Save" ) (AVIcon.249 Name: "Save" Res: "Icons.Save" ) (Space.250 ) (Butn.251 Help: "Add Theme//Inserts themes into the view" HelpTopic: "Add_Theme" Icon: 252 Click: "View.Add" ) (AVIcon.252 Name: "AddTheme" Res: "Icons.AddTheme" ) (Space.253 ) (Butn.254 Disabled: 1 Help: "Theme Properties//Displays the dialog box to edit properties of the active theme" HelpTopic: "Theme_Properties" Update: "View.ActiveThemesUpdate" Icon: 255 Click: "View.ThemeProperties" ) (AVIcon.255 Name: "Props" Res: "Icons.Props" ) (Butn.256 Disabled: 1 Help: "Edit Legend//Displays the legends of the active themes" HelpTopic: "Edit_Legend" Update: "View.ActiveThemesUpdate" Icon: 257 Click: "View.EditLegendClick" ) (AVIcon.257 Name: "Legend" Res: "Icons.Legend" ) (Butn.258 Disabled: 1 Help: "Open Theme Table//Opens the tables of the active themes" HelpTopic: "Open_Theme_Table" Update: "View.TabularThemesUpdate" Icon: 259 Click: "View.ShowTable" ) (AVIcon.259 Name: "Table" Res: "Icons.Table" ) (Space.260 ) (Butn.261 Disabled: 1 Help: "Find//Finds features in the active themes using the text you enter" HelpTopic: "Find" Update: "View.TabularThemesUpdate" Icon: 262 Click: "View.Find" ) (AVIcon.262 Name: "Find" Res: "Icons.Find" ) (Butn.263 Disabled: 1 Help: "Locate Address//Locates an address in the active, matchable theme" HelpTopic: "Locate_Address" Update: "View.LocateUpdate" Icon: 264 Click: "View.Locate" ) (AVIcon.264 Name: "AddMatch" Res: "Icons.AddMatch" ) (Butn.265 Disabled: 1 Help: "Query Builder//Displays the Query Builder to select features with a logical expression" HelpTopic: "Query_Builder" Update: "View.AttributeThemesUpdate" Icon: 266 Click: "View.Query" ) (AVIcon.266 Name: "QueryBuilder" Res: "Icons.QueryBuilder" ) (Space.267 ) (Butn.268 Disabled: 1 Help: "Zoom to Full Extent//Zooms to the extent of all themes" HelpTopic: "Zoom_to_Full_Extent" Update: "View.HasDataUpdate" Icon: 269 Click: "View.ZoomFullExtent" ) (AVIcon.269 Name: "ZoomView" Res: "Icons.ZoomView" ) (Butn.270 Disabled: 1 Help: "Zoom to Active Theme(s)//Zooms to the extent of active themes" HelpTopic: "Zoom_to_Active_Theme" Update: "View.ActiveThemesUpdate" Icon: 271 Click: "View.ZoomToThemes" ) (AVIcon.271 Name: "ZoomTheme" Res: "Icons.ZoomTheme" ) (Butn.272 Disabled: 1 Help: "Zoom to Selected//Zooms to the extent of the selected features" HelpTopic: "Zoom_to_Selected" Update: "View.SelectableThemesUpdate" Icon: 273 Click: "View.ZoomToSelected" ) (AVIcon.273 Name: "ZoomToSelected" Res: "Icons.ZoomToSelected" ) (Butn.274 Disabled: 1 Help: "Zoom In//Zooms in on the center of the display" HelpTopic: "Zoom_In" Update: "View.HasDataUpdate" Icon: 275 Click: "View.ZoomIn" ) (AVIcon.275 Name: "ZoomIn" Res: "Icons.ZoomIn" ) (Butn.276 Disabled: 1 Help: "Zoom Out//Zooms out from the center of the display" HelpTopic: "Zoom_Out" Update: "View.HasDataUpdate" Icon: 277 Click: "View.ZoomOut" ) (AVIcon.277 Name: "ZoomOut" Res: "Icons.ZoomOut" ) (Butn.278 Disabled: 1 Help: "Zoom to Previous Extent//Goes back to the previous extent you were viewing" HelpTopic: "Zoom_Previous" Update: "View.UndoZoomUpdate" Icon: 279 Click: "View.UndoZoom" ) (AVIcon.279 Name: "ZoomPrevious" Res: "Icons.ZoomPrevious" ) (Space.280 ) (Butn.281 Disabled: 1 Help: "Select Features Using Graphic//Selects features in active themes using selected graphics" HelpTopic: "Select_Features_Using_Graphic" Update: "View.SpatialSelectUpdate" Icon: 282 Click: "View.SpatialSelect" ) (AVIcon.282 Name: "SpatialSelect" Res: "Icons.SpatialSelect" ) (Butn.283 Disabled: 1 Help: "Clear Selected Features//Unselects the selected features of all active themes" HelpTopic: "Clear_Selected_Features" Update: "View.AttributeThemesUpdate" Icon: 284 Click: "View.ClearSelect" ) (AVIcon.284 Name: "SelectNone" Res: "Icons.SelectNone" ) (Space.287 ) (Butn.288 InternalName: "spatial" Disabled: 1 Help: "Histogram//Displays the histogram distribution of the values in a grid theme" HelpTopic: "Histogram@spatial.hlp" Update: "Spatial.HistogramUpdate" Icon: 289 Click: "Spatial.Histogram" ) (AVIcon.289 Name: "Histogram" Res: "Icons.Histogram" ) (Space.290 InternalName: "spatial" ) (Butn.291 Help: "Help//Gets help about the next button, tool, or menu choice you click" HelpTopic: "Help_button" Icon: 292 Click: "Help.Tool" ) (AVIcon.292 Name: "HelpTool" Res: "Icons.HelpTool" ) (Space.293 ) (Space.294 ) (Butn.295 Help: "Import InfoMap Boundary//Imports an exported *.txt file version of an InfoMap Boundary file." Icon: 296 Click: "a.importBoundary" ) (AVIcon.296 Name: "Loop" Res: "Icons.Loop" ) (Butn.297 Help: "Export Shapefile to Infomap//Exports Active Polygon Shapefile to Infomap Boundary text file." Icon: 298 Click: "a.exportBoundary" ) (AVIcon.298 Name: "Group" Res: "Icons.Group" ) (Space.299 ) (Butn.300 Help: "Import InfoMap Data//Imports a *.txt TEXT data file produced by InfoMap." Icon: 301 Click: "a.importData" ) (AVIcon.301 Name: "XY" Res: "Icons.XY" ) (Butn.302 Help: "Export Points to Infomap//Exports selected records of Point shapefile to Infomap Data text file." Icon: 303 Click: "a.exportPoints" ) (AVIcon.303 Name: "Write" Res: "Icons.Write" ) (PopupSet.304 Child: 305 ) (Popup.305 Child: 306 Child: 307 Child: 308 Child: 309 Child: 310 Child: 311 Child: 312 Child: 313 Child: 314 Child: 315 Child: 316 Child: 317 Child: 318 Child: 319 Child: 320 Child: 321 Child: 322 Label: "Menu" ) (Choice.306 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.307 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.308 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.309 ) (Choice.310 Help: "Turns general snapping on" Update: "View.ToggleGeneralSnapUpdate" Label: "Enable General Snapping" Click: "View.ToggleGeneralSnap" Shortcut: "Keys.None" ) (Choice.311 Help: "Turns interactive snapping on" Update: "View.ToggleInteractiveSnapUpdate" Label: "Enable Interactive Snapping" Click: "View.ToggleInteractiveSnap" Shortcut: "Keys.None" ) (Space.312 ) (Choice.313 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.314 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.315 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.316 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.317 ) (Choice.318 Help: "Unselects the selected features in all active themes" Update: "View.AttributeThemesUpdate" Label: "Clear Selection" Click: "View.ClearSelect" Shortcut: "Keys.None" ) (Choice.319 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.320 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.321 Help: "Zooms to the extent of the selected features" Update: "View.SelectableThemesUpdate" Label: "Zoom to Selected" Click: "View.ZoomToSelected" Shortcut: "Keys.None" ) (Choice.322 Help: "Centers display on point where you click to bring up popup" Update: "View.HasDataUpdate" Label: "Pan" Click: "View.PopupPan" Shortcut: "Keys.None" ) (ToolBar.323 Child: 324 Child: 326 Child: 328 Child: 330 Child: 336 Child: 338 Child: 340 Child: 342 Child: 344 Child: 346 Child: 348 Child: 350 Child: 352 Child: 371 Child: 376 ) (Tool.324 Disabled: 1 Help: "Identify//Provides information about a feature" HelpTopic: "Identify_tool" Update: "View.IdentifyUpdate" Icon: 325 Cursor: "Cursors.ID" Apply: "View.Identify" ) (AVIcon.325 Name: "ID" Res: "Icons.ID" ) (Tool.326 Disabled: 1 Help: "Pointer//Selects, moves, and resizes graphics" HelpTopic: "Pointer_tool" Update: "View.HasDataUpdate" Icon: 327 Cursor: "Cursors.Select" Apply: "View.Select" Click: "View.SelectTool" ) (AVIcon.327 Name: "Select" Res: "Icons.Select" ) (Tool.328 Disabled: 1 Help: "Vertex Edit//Adds, moves, and deletes vertices of features and graphics" HelpTopic: "Vertex_Edit_tool" Update: "View.SelectToEditUpdate" Icon: 329 Cursor: "Cursors.SelectEdit" Apply: "View.SelectToEdit" Click: "View.SelectToEditTool" ) (AVIcon.329 Name: "SelectEdit" Res: "Icons.SelectEdit" ) (Tool.330 Disabled: 1 Help: "Select Feature//Selects features in the active themes by pointing or dragging" HelpTopic: "Select_Feature_tool" Update: "View.SelectableThemesUpdate" Icon: 331 Cursor: "Cursors.Default" Apply: "View.SelectPoint" ) (AVIcon.331 Name: "FeatureSelect" Res: "Icons.FeatureSelect" ) (Tool.336 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: 337 Cursor: "Cursors.ZoomIn" Apply: "View.ZoomInTool" ) (AVIcon.337 Name: "ZoomInTool" Res: "Icons.ZoomInTool" ) (Tool.338 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: 339 Cursor: "Cursors.ZoomOut" Apply: "View.ZoomOutTool" ) (AVIcon.339 Name: "ZoomOutTool" Res: "Icons.ZoomOutTool" ) (Tool.340 Disabled: 1 Help: "Pan//Drags the display in the direction you move the cursor" HelpTopic: "Pan_tool" Update: "View.HasDataUpdate" Icon: 341 Cursor: "Cursors.Pan" Apply: "View.Pan" ) (AVIcon.341 Name: "Pan" Res: "Icons.Pan" ) (Tool.342 Disabled: 1 Help: "Measure//Measures distance" HelpTopic: "Measure_tool" Update: "View.HasDataUpdate" Icon: 343 Cursor: "Cursors.Measure" Apply: "View.Measure" ) (AVIcon.343 Name: "Measure" Res: "Icons.Measure" ) (Tool.344 Disabled: 1 Help: "Hot Link//Follows a hot link in the active themes" HelpTopic: "Hot_Link_tool" Update: "View.HotLinkUpdate" Icon: 345 Cursor: "Cursors.Media" Apply: "View.HotLink" ) (AVIcon.345 Name: "Media" Res: "Icons.Media" ) (Tool.346 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: 347 Cursor: "Cursors.Default" Apply: "View.AOITool" ) (AVIcon.347 Name: "AOI" Res: "Icons.AOI" ) (Tool.348 Disabled: 1 Help: "Label//Labels a feature in the active theme with data from its table" HelpTopic: "Label_tool" Update: "View.LabelToolUpdate" Icon: 349 Cursor: "Cursors.Tag" Apply: "View.LabelTool" ) (AVIcon.349 Name: "Tag" Res: "Icons.Tag" ) (Tool.350 Help: "Text//Creates text on the display" HelpTopic: "Text_tool" Update: "View.GraphicToolUpdate" Icon: 351 Cursor: "Cursors.Text" Apply: "View.TextTool" Click: "SymWin.DisplayFontPanel" ) (AVIcon.351 Name: "Text" Res: "Icons.Text" ) (ToolMenu.352 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 353 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" Child: 354 Child: 355 Child: 357 Child: 359 Child: 361 Child: 363 Child: 365 Child: 367 Child: 369 ) (AVIcon.353 Name: "Point" Res: "Icons.Point" ) (Tool.354 Help: "Draw Point//Creates a point on the display" HelpTopic: "Draw_tool" Update: "View.PointToolUpdate" Icon: 353 Cursor: "Cursors.CrossHair" Apply: "View.PointTool" Click: "SymWin.DisplayMarkerPanel" ) (Tool.355 Help: "Draw Straight Line//Creates a line on the display" HelpTopic: "Draw_tool" Update: "View.GraphicToolUpdate" Icon: 356 Cursor: "Cursors.CrossHair" Apply: "View.LineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.356 Name: "SelectLine" Res: "Icons.SelectLine" ) (Tool.357 Help: "Draw Line//Creates a line with two or more points on the display" HelpTopic: "Draw_tool" Update: "View.PolyLineToolUpdate" Icon: 358 Cursor: "Cursors.CrossHair" Apply: "View.PolyLineTool" Click: "SymWin.DisplayPenPanel" ) (AVIcon.358 Name: "Lines" Res: "Icons.Lines" ) (Tool.359 Help: "Draw Rectangle//Creates a rectangle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 360 Cursor: "Cursors.CrossHair" Apply: "View.RectTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.360 Name: "Rect" Res: "Icons.Rect" ) (Tool.361 Help: "Draw Circle//Creates a circle on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 362 Cursor: "Cursors.CrossHair" Apply: "View.CircleTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.362 Name: "Disk" Res: "Icons.Disk" ) (Tool.363 Help: "Draw Polygon//Creates a polygon on the display" HelpTopic: "Draw_tool" Update: "View.PolyToolUpdate" Icon: 364 Cursor: "Cursors.CrossHair" Apply: "View.PolyTool" Click: "SymWin.DisplayFillPanel" ) (AVIcon.364 Name: "Poly" Res: "Icons.Poly" ) (Tool.365 Disabled: 1 Help: "Draw Line to Split Feature//Creates a line to split line features" HelpTopic: "Draw_tool" Update: "View.SplitLineToolUpdate" Icon: 366 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.366 Name: "SplitLine" Res: "Icons.SplitLine" ) (Tool.367 Disabled: 1 Help: "Draw Line to Split Polygon//Creates a line to split polygon features" HelpTopic: "Draw_tool" Update: "View.SplitPolyToolUpdate" Icon: 368 Cursor: "Cursors.CrossHair" Apply: "View.SplitTool" ) (AVIcon.368 Name: "SplitPoly" Res: "Icons.SplitPoly" ) (Tool.369 Disabled: 1 Help: "Draw Line to Append Polygon//Appends a new polygon adjacent to other polygons" HelpTopic: "Draw_tool" Update: "View.AutoCompleteUpdate" Icon: 370 Cursor: "Cursors.CrossHair" Apply: "View.AutoCompleteTool" ) (AVIcon.370 Name: "AutoComplete" Res: "Icons.AutoComplete" ) (ToolMenu.371 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 372 Cursor: "Cursors.Default" Apply: "View.SnapTool" Child: 373 Child: 374 ) (AVIcon.372 Name: "SnapTool" Res: "Icons.SnapTool" ) (Tool.373 Disabled: 1 Invisible: 1 Help: "Snap//Sets the general snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.SnapToolUpdate" Icon: 372 Cursor: "Cursors.Default" Apply: "View.SnapTool" ) (Tool.374 Disabled: 1 Invisible: 1 Help: "Snap//Sets the interactive snapping tolerance for the editable theme" HelpTopic: "Snap_tools" Update: "View.InteractiveSnapToolUpdate" Icon: 375 Cursor: "Cursors.Default" Apply: "View.InteractiveSnapTool" ) (AVIcon.375 Name: "SnapFeatureTool" Res: "Icons.SnapFeatureTool" ) (Tool.376 InternalName: "spatial" Disabled: 1 Help: "Contour//Creates a contour based on a point you define in a view" HelpTopic: "Contour_Tool@spatial.hlp" Update: "Spatial.ContourToolUpdate" Icon: 377 Cursor: "Cursors.Bullseye" Apply: "Spatial.ContourTool" ) (AVIcon.377 Name: "Contour" Res: "Icons.Contour" ) (AVIcon.378 Name: "Icon" Res: "View.Icon" ) (FN.929 Path: "c:/temp" ) (TClr.930 Red: 0xffff Green: 0xffff ) (AVStr.931 S: "View" ) (AVStr.932 S: "Table" ) (AVStr.933 S: "Chart" ) (AVStr.934 S: "Layout" ) (AVStr.935 S: "Script" ) (AVStr.936 S: "Project" ) (AVStr.937 S: "Appl" )