Search Results for

    Show / Hide Table of Contents

    Item property

    Name

    Sdl.MultiTerm.TMO.Interop.HitTerms.Item — Refers to a particular hit term.

    Type

    Sdl.MultiTerm.TMO.Interop.HitTerm

    (read)

    Index Parameters

    • Index (Variant)

    Description

    This class allows you to retrieve a particular hit term from a hit terms collection, e.g. to output the actual hit term content, the associated entry id, etc.

    Sample

    Termbase oTb = oTbs["Termbase name"];
    TermbaseSearch oSearch = oTb.Search;
    oSearch.Direction=Sdl.MultiTerm.TMO.Interop.MtSearchDirection.mtSearchDown;
    oSearch.MaximumHits=10;
    oSearch.SourceIndex="English";
    oSearch.SearchExpression ="starship";
    
    HitTerms oHits = oSearch.Execute();
    Debug.WriteLine(oHits[0].Text);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX