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