Viewing EDI Tree

Index

    Viewing EDI Tree

    EDIDocumentViewer allows you to either display data from an EDILightWeightDocument or an EDIDocument. Nodes in the visual tree are only created when they are needed to reduced the memory footprint and increase the overall performance of your application. Conversely nodes are removed from memory when they are expanded.

    The example below assumes that you have already created an instance of the EDIDocumentViewer and added it to your form.

    Example

    EDIDocument sampleEDIFile = new EDIDocument(“C:\\EDIDoc.txt”);
     
    //..Create your EDI documents loops, segments an elements here
     
    // Load the data into the EDIDocumentViewer.
    ediDocumentViewer1.LoadDocument(sampleEDIFile);
    Your EDIDocument will now be displayed in a visual tree. You can now expand and collapse loops, segments and composite elements and see the data in your EDI document.
    in EDI Document
    Did this article answer your question?