VerticalGridLayer Example

Land Auto

VerticalGridLayer Example

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