ExtNorthing Example
Sub Example_ExtNorthing()
' This example returns the ExtNorthing for the first Spiral found in the
' first Alignment in the collection.
Dim align As AeccAlignment
Dim alignEnts As AeccAlignEntity
Set align = AeccApplication.ActiveProject.Alignments.Item(0)
Dim alignMsg As String
alignMsg = "There is no Spiral entity in the first Alignment."
' Find first Spiral in the alignment
For Each alignEnt In align.AlignEntities
If alignEnt.Type = kSpiral Then
alignMsg = "The ExtNorthing for the first Spiral in the alignment is: " & alignEnt.ExtNorthing
Exit For
End If
Next
MsgBox alignMsg, vbInformation, "ExtNorthing Example"
End Sub