librarySystem?()

Synopsis

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.

Syntax

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

Example 1

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

Example 2

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

Example 3

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

Example 4

Intent >librarySystem?(:myLib) 
--> False 
The library "myLib" is presumed to exist in this example. "myLib" is not a library supplied by Autodesk.

Example 5

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