Returns the description of the Data Segment.
Syntax:
Returns:
A string that describes the data segment. For example, the description of the ISA segment is "Interchange Control Header"
Example:
Dim oSegment As Fredi.ediDataSegment
...
Set oSegment = oEdiDoc.FirstDataSegment
Do While Not oSegment Is Nothing
MsgBox oSegment.ID & " " & oSegment.Description
Set oSegment = oSegment.Next
Loop
Sample