Search Results for

    Show / Hide Table of Contents

    Content property

    Name

    Sdl.MultiTerm.TMO.Interop.EntryContent.Content — Provides programmatic access to the content of a particular entry.

    Type

    String (read / write)

    Index Parameters

    none

    Description

    This property allows you to access, for example, the descriptive fields and index fields (i.e. languages and terms) contained in a particular entry.

    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;
    Debug.WriteLine("Number of entry-level descriptive fields: " + content.Fields.Count.ToString());
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX