Search Results for

    Show / Hide Table of Contents

    Sdl.MultiTerm.TMO.Interop.EntryFields class

    Name

    Sdl.MultiTerm.TMO.Interop.EntryFields — Provides programmatic access to the entry-level fields of a particular entry.

    Description

    Via this class you can retrieve the descriptive fields that refer to the entry as such, e.g. "Subject."

    Properties

    • Count: Returns the number of entry-level descriptive fields.
    • Item: Refers to a particular entry-level descriptive field.

    Methods

    • Add: Adds an entry-level descriptive field to the collection.

    Sample

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