Search Results for

    Show / Hide Table of Contents

    Execute method

    Name

    Sdl.MultiTerm.TMO.Interop.TermbaseBrowser.Execute — Executes the browse operation.

    Returntype

    Sdl.MultiTerm.TMO.Interop.HitTerms

    Parameters

    none

    Description

    This method is applied to the Browse object to actually carry out the browse operation. The results of the browse operation (if any) are stored in a HitTerms object, from which the hit term(s) can subsequently be retrieved.

    You need to set the SourceIndex and MaximumTermCount properties before calling Execute().

    Sample

    Termbase oTb = oTbs["Termbase name"];
    TermbaseBrowser oBrowser = oTb.Browse;
    oBrowser.Direction = Sdl.MultiTerm.TMO.Interop.MtBrowseDirection.mtBrowseDown;
    oBrowser.MaximumTermCount = 1;
    oBrowser.StartTerm="";
    oBrowser.SourceIndex="English";
    
    HitTerms oHits = oBrowser.Execute();
    Debug.Write(oHits[0].Text);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX