Dialog for creating traverses.
TraverseWindow is a non-creatable object. References to non-creatable objects must be obtained through other objects.
| Interfaces | Description |
|---|---|
| IExtension (esriSystem) | Provides access to members that define an extension. |
| ITraverseWindow | Provides access to members that interact with the Traverse Window dialog. |
| 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. |
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.
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)
When working with TraverseWindow's default outbound interface in Visual Basic 6 declare variables as follows: Private WithEvents pTraverseWindow as TraverseWindow