How to add your knowledge

libraryLocked?()

    Synopsis

    Given a design library name, string, or "spec", returns whether the library is locked. If the library is not found, NoValue is returned.

    Syntax

    libraryLocked? ( libspec As Any ) As Any 
    Argument Type Description
    libspec Any The design library as a name, string, or library spec.

    Example 1

    Intent >libraryLocked?(:baseLib) 
    --> True 

    Example 2

    Intent >libraryLocked?("baseLib") 
    --> True 

    Example 3

    Intent >libraryLocked?(designLibrary(:basePart)) 
    --> True 

    Example 4

    Intent >libraryLocked?(:projectLib) 
    --> False 

    Example 5

    Intent >libraryLocked?(:unknownLib) 
    --> NoValue 
    libraryLocked?() returned NoValue since the design library is nonexistent.