Search Results for

    Show / Hide Table of Contents

    ReadOnly property

    Name

    Sdl.MultiTerm.TMO.Interop.EntryIndex.ReadOnly — Indicates whether an index is read-only.

    Type

    Boolean (read)

    Index Parameters

    none

    Description

    Via this property you can ascertain whether a particular index is read-only for the currently logged-in user.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    Entries oEntries = oTb.Entries;
    
    //select entry #1
    Entry oEntry = oEntries.Item(1);
    
    EntryIndexes oIndexes = oEntry.Content.EntryIndexes;
    
    //select first entry index
    EntryIndex oIndex = oIndexes[0];
    
    //see whether this index is read-only for currently logged-in user
    Debug.WriteLine("Is index read-only: " + oIndex.ReadOnly);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX