SpiNorthing Example

Land Auto

SpiNorthing Example

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