schExtractStatus
schExtractStatus(d_cvId) =>t_status/ nil
Description
Checks for error and warning markers before returning the schematic extraction status for the specified schematic cellview. When the schematic is read-only, schExtractStatus() will also check whether any instance masters have been updated since the schematic was last saved.
Arguments
Value Returned
Examples
cvId = dbOpenCellViewByType("lib""block""schematic"""'r))
case( schExtractStatus( cvId )
(obsolete info("Re-Check schematic.\n"))
(dirty info("Ok but look it over.\n"))
(clean info("GO FOR IT!\n"))
)
Return to top