Search Results for

    Show / Hide Table of Contents

    Label property

    Name

    Sdl.MultiTerm.TMO.Interop.Index.Label — Returns the label of a particular index.

    Type

    String (read)

    Index Parameters

    none

    Description

    The label is the name of the index which is used to uniquely identify an index, i.e. a language, e.g. "English." Labels are fully user-definable.

    Sample

    Termbase oTb = oTbs["Termbase1"];
    
    TermbaseDefinition oDef = oTb.Definition;
    Indexes oIndexes = oDef.Indexes;
    
    //select first index
    Index oIndex = oIndexes[0];
    Debug.WriteLine(oIndex.Label);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX