Search Results for

    Show / Hide Table of Contents

    FullTextSearch property

    Name

    Sdl.MultiTerm.TMO.Interop.MultiSearch.FullTextSearch — Turns on/off full text search.

    Type

    Boolean (read / write)

    Index Parameters

    none

    Description

    By setting this property to 'true', a full text search will be performed in the termbase(s). That is, not just the terms, but also the field values will be searched. The default value is 'false'.

    Setting this property to any value will automatically set FuzzySearch to 'false' and vice versa.

    Sample

    //create MultiSearch object
    MultiSearch oSearch = oMt.MultiSearch;
    
    //define search properties
    oSearch.FullTextSearch=true;
    oSearch.Direction=Sdl.MultiTerm.TMO.Interop.MtSearchDirection.mtSearchDown;
    oSearch.MaximumHits=10;
    oSearch.SearchExpression="window";
    
    //add termbases to multisearch
    oSearch.AddSearchTermbase(oTb1, "English", "German");
    oSearch.AddSearchTermbase(oTb2, "Englisch", "Deutsch");
    oSearch.AddSearchTermbase(oTb3, "ENG", "DEU");
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX