Given a design library name , string , or "spec", returns whether the library is locked. If the library is not found, NoValue is returned.
libraryLocked? ( libspec As Any ) As Any
Argument | Type | Description |
---|---|---|
libspec | Any | The design library as a name , string , or library spec. |
Intent >libraryLocked?(:baseLib) --> True
Intent >libraryLocked?("baseLib") --> True
Intent >libraryLocked?(designLibrary(:basePart)) --> True
Intent >libraryLocked?(:projectLib) --> False
Intent >libraryLocked?(:unknownLib) --> NoValuelibraryLocked?() returned NoValue since the design library is nonexistent.