ShortTangent Example

Land Auto

ShortTangent Example

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