Search Results for

    Show / Hide Table of Contents

    Item property

    Name

    Sdl.MultiTerm.TMO.Interop.EntryFields.Item — Refers to a particular entry-level descriptive field.

    Type

    Sdl.MultiTerm.TMO.Interop.EntryField

    (read)

    Index Parameters

    • Index (Variant)

    Description

    This property is used, for example, to retrieve the field label and/or value.

    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;
    EntryField oField = oFields[0];
    Debug.WriteLine(oField.Value);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX