Framework EDI Reference. Methods and Properties
ediDataSegment. Description

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

Visual Basic program displaying Data Segment properties