ArcGIS Developer Help  (Editor)    

TraverseWindow Class

Dialog for creating traverses.

TraverseWindow is a non-creatable object. References to non-creatable objects must be obtained through other objects.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Interfaces

Interfaces Description
IExtension (esriSystem) Provides access to members that define an extension.
ITraverseWindow Provides access to members that interact with the Traverse Window dialog.

Event Interfaces

Interfaces Description
ITraverseWindowEvents (default) Provides access to Traverse Window events. Implement it to listen to specific events that occur when the Traverse Window is used.

Remarks

The TraverseWindow is used to work with features created with Coordinate Geometry (COGO) descriptions.  The TraverseWindow is an editor extension; use IEditor::FindExtension to obtain a reference to it.

[Visual Basic 6.0]

The following code snippet illustrates how to obtain a reference to the TraverseWindow.

  Dim pEditor As IEditor
  Dim pID As New UID
  pID = "esriEditor.Editor"
  Set pEditor = Application.FindExtensionByCLSID(pID)
  
  ' Get a reference to the traverse window
  Dim pTraverseWindow As ITraverseWindow
  Dim pUID As New UID
  pUID = "esriEditor.TraverseWindow"
  Set pTraverseWindow = pEditor.FindExtension(pUID)

Working with Events

[Visual Basic 6.0]

When working with TraverseWindow's default outbound interface in Visual Basic 6 declare variables as follows:

Private WithEvents pTraverseWindow as TraverseWindow

 


Feedback Send feedback on this page