Search Results for

    Show / Hide Table of Contents

    ID property

    Name

    Sdl.MultiTerm.TMO.Interop.FilterDefinition.ID — Returns the unique id of the filter.

    Type

    Long (read)

    Index Parameters

    none

    Description

    Each filter is referenced in the database backend using a unique id, which the 'normal' user never gets to see. You can use this property to retrieve the corresponding id.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    
    //select filter
    FilterDefinitions oFilters = oTb.FilterDefinitions;
    FilterDefinition oFilter = oFilters["Missing target"];
    
    Debug.WriteLine(oFilter.ID);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX