PiEasting Example
Sub Example_PiEasting()
' This example returns the PiEasting for the first Curve 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 Curve entity in the first Alignment."
' Find first Curve in the alignment
For Each alignEnt In align.AlignEntities
If alignEnt.Type = kCurve Then
alignMsg = "The OiEasting for the first Curve in the alignment is: " & alignEnt.PiEasting
Exit For
End If
Next
MsgBox alignMsg, vbInformation, "PiEasting Example"
End Sub