Search Results for

    Show / Hide Table of Contents

    EntryClasses property

    Name

    Sdl.MultiTerm.TMO.Interop.TermbaseAccessPermissions.EntryClasses — Provides programmatic access to the entry classes the currently logged-in user has access to.

    Type

    Sdl.MultiTerm.TMO.Interop.EntryClassesPermissions (read)

    Index Parameters

    none

    Description

    Access to entries can be restricted using entry classes. Via this property you can determine to which entry classes the currently logged-in user has access.

    Sample

    //select termbase
    Termbase oTb = oTbs["TRADOS"];
    
    //retrieve the termbase access permissions of the currently logged-in user
    TermbaseAccessPermissions oPermissions = oTb.AccessPermissions;
    EntryClassesPermissions oClasses = oPermissions.EntryClasses;
    Debug.WriteLine("Number of accessible entry classes: " + oClasses.Count.ToString());
    
    oServerRep.Disconnect();
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX