Search Results for

    Show / Hide Table of Contents

    EntryClass property

    Name

    Sdl.MultiTerm.TMO.Interop.EntryContent.EntryClass — Returns the entry class of a particular entry.

    Type

    String (read)

    Index Parameters

    none

    Description

    You can use this property to output the entry class of the selected entry. Note that only server termbases have an entry class.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    Entries oEntries = oTb.Entries;
    
    //select entry
    Entry oEntry = oEntries.Item(1);
    EntryContent content = oEntry.Content;
    
    //output entry content
    Debug.WriteLine(content.EntryClass);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX