schAttachLibToPackageTech
schAttachLibToPackageTech(
t_libName
)
=> d_DBId / nil
Description
Attaches a package technology to the given library.
Arguments
|
Name of the library which is to be attached to the package technology. |
Value Returned
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