StationIncrement Example

Land Auto

StationIncrement Example

Sub Example_StationIncrement()
    
    ' This example returns the StationIncrement for the first ProfileBlock
    ' in the collection
    Dim alignProf As AeccProfileBlock
    Set alignProf = AeccApplication.ActiveDocument.ProfileBlocks.Item(0)
    
    MsgBox "The StationIncrement for the first ProfileBlock in the collection is: " _
         & alignProf.StationIncrement, vbInformation, "StationIncrement Example"
    
End Sub