LOffset Example

Land Auto

LOffset Example

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