Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

schAttachLibToPackageTech

schAttachLibToPackageTech(
t_libName
)
=> d_DBId / nil

Description

Attaches a package technology to the given library.

Arguments

t_libName

Name of the library which is to be attached to the package technology.

Value Returned

d_DBId

Returns the database ID of the technology file.

nil

The technology library or file does not exist.

Examples

Attaches the given window's library to the package fabric technology and displays the corresponding message on the CIW.

schAttachLibToPackageTech
when(window = hiGetCurrentWindow()
  when(cellView = geGetEditCellView(window)
   libName = cellView->libName
   if( tech = schAttachLibToPackageTech(libName) then
     print("Library successfully attached to Package Technology.")
   else
     print("Unable to attach Library to Package Technology.")
   )
  )
) 

Return to top
 ⠀
X