Given a design library name , string , or "spec", returns whether the library is a system (eg. ISL) library. If the library is not found, NoValue is returned.
librarySystem? ( libspec As Any ) As Any
Argument | Type | Description |
---|---|---|
libspec | Any | The design library as a name , string , or library spec. |
Intent >librarySystem?(:baseLib) --> True
Intent >librarySystem?("baseLib") --> True
Intent >librarySystem?(designLibrary(:basePart)) --> True
Intent >librarySystem?(:myLib) --> FalseThe library "myLib" is presumed to exist in this example. "myLib" is not a library supplied by Autodesk.
Intent >librarySystem?(:unknownLib) --> NoValuelibrarySystem?() returned NoValue since the design library is nonexistent.