Search Results for

    Show / Hide Table of Contents

    Sdl.MultiTerm.TMO.Interop.Indexes class

    Name

    Sdl.MultiTerm.TMO.Interop.Indexes — Provides programmatic access to a particular index in the termbase definition.

    Description

    This class provides programmatic access to a specific index (i.e. language) contained in a termbase definition. You can use this class, for example, to generate a list of all languages contained in the definition of a particular termbase. Note that this class gives access to all languages contained in the termbase definition, not only to the languages that a user can access. If you want to generate a list that contains only the languages the currently logged-in user has access to, you should rather use the IndexesPermissions class.

    Properties

    • Count: Returns the number of indexes (i.e. languages) contained in a termbase definition.
    • Item: Provides access to a specific termbase index.

    Methods

    None

    Sample

    TermbaseDefinition tbDef = oTb.Definition;
    Indexes oIndexes = tbDef.Indexes;
    Debug.Write("Number of languages: " + oIndexes.Count.ToString());
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX