Search Results for

    Show / Hide Table of Contents

    ReadOnly property

    Name

    Sdl.MultiTerm.TMO.Interop.ImportDefinition.ReadOnly — Returns whether a particular import definition is read-only.

    Type

    Boolean (read)

    Index Parameters

    none

    Description

    Import definitions may be read-only, e.g. when the termbase administrator provides a central import definition, which is not supposed to be altered by the end users. Via this property you can ascertain whether a particular import definition is read-only for the currently logged-in user.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    
    //select an import definition
    ImportDefinitions oImpDefs = oTb.ImportDefinitions;
    ImportDefinition oImpDef = oImpDefs["Default import definition"];
    Debug.WriteLine("Is this import definition read-only for me? " + oImpDef.ReadOnly);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX