Search Results for

    Show / Hide Table of Contents

    Item property

    Name

    Sdl.MultiTerm.TMO.Interop.IncompleteEntries.Item — Refers to a particular incomplete entry.

    Type

    String (read)

    Index Parameters

    • Index (Long)

    Description

    You can use this property, for example, to generate a list of all incomplete entries. Note that this property returns the unique id of the incomplete entry.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    
    //get incomplete entries
    IncompleteEntries oIncompletes = oTb.IncompleteEntries;
    Debug.WriteLine("Number of incomplete entries: " + oIncompletes.Count.ToString());
    
    for(int i=1;i==oIncompletes.Count;i++)
    {
       	Debug.WriteLine(oIncompletes[i]);
    }
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX