AD1 Example

Land Auto

AD1 Example

Sub Example_AD1()
    
    ' This example returns the AD1 value 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 AD1 value for the first Spiral in the alignment is: " & alignEnt.AD1
            Exit For
        End If
    Next
    
    MsgBox alignMsg, vbInformation, "AD1 Example"
    
End Sub