Search Results for

    Show / Hide Table of Contents

    ReadOnly property

    Name

    Sdl.MultiTerm.TMO.Interop.LayoutDefinition.ReadOnly — Returns whether a particular layout is read-only.

    Type

    Boolean (read)

    Index Parameters

    none

    Description

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

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    
    //select layout
    LayoutDefinitions oLayouts = oTb.LayoutDefinitions;
    LayoutDefinition oLayout=oLayouts["Flags layout"];
    Debug.WriteLine("Is layout read-only? " + oLayout.ReadOnly);
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX