Listing Baselines in a Corridor

The collection of all baselines in a corridor are contained in the AeccCorridor.Baselines property.

The following sample display information about the underlying alignment and profile for every baseline in a corridor:

Dim oBaseline As AeccBaseline
For Each oBaseline In oCorridor.Baselines
    Debug.Print "Baseline information -"
    Debug.Print "Alignment    : " & oBaseline.Alignment.Name
    Debug.Print "Profile      : " & oBaseline.Profile.Name
    Debug.Print "Start station: " & oBaseline.StartStation
    Debug.Print "End station  : " & oBaseline.EndStation
    Debug.Print
Next