Search Results for

    Show / Hide Table of Contents

    Sdl.MultiTerm.TMO.Interop.Homonyms class

    Name

    Sdl.MultiTerm.TMO.Interop.Homonyms — Provides programmatic access to the homonym entries of a particular termbase.

    Description

    Homonyms are duplicate terms. Those can be actual duplicates, i.e. redundant terms, but it can also be the same term expressing different concepts, e.g. "book" (book for reading) and "book" (to book a flight).

    Via this class you can access all homonyms (if any) contained in a termbase. As parameter you need to provide the index that should be searched for homonyms.

    Properties

    • Count: Returns the number of homonyms for a particular termbase index.
    • Item: Provides access to a particular homonym.

    Methods

    None

    Sample

    Termbase oTb = oTbs["Termbase name"];
    
    Homonyms oHomonyms = oTb.GetHomonyms("English", "","");
    Debug.Write("Homonym count: " + oHomonyms.Count.ToString());
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX