Search Results for

    Show / Hide Table of Contents

    LastTerm property

    Name

    Sdl.MultiTerm.TMO.Interop.TermbaseSearch.LastTerm — Sets the last term from which a search operation should be started.

    Type

    String (write)

    Index Parameters

    none

    Description

    Suppose you would like to search for the term 'window'. Afterwards you would like to search for all terms beginning with window that come after the term 'window' itself. In this case you can use this property to set 'window' as the last term from which the search should be started.

    Sample

    TermbaseSearch tbSearch = oTb.Search;
    
    tbSearch.LastTerm = "window";
    tbSearch.SearchExpression="window*";
    tbSearch.Direction = Sdl.MultiTerm.TMO.Interop.MtSearchDirection.mtSearchDown;
    tbSearch.MaximumHits=10;
    tbSearch.SourceIndex="English";
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX