dbDeleteHierCache
dbDeleteHierCache(d_cvId) =>t / nil
Description
Deletes the hierarchical cache file for the specified cellview, if the cache file exists.
Arguments
|
Database ID of the cellview that contains the hierarchical cache. |
Value Returned
Example
Creates a hierarchical cache file and then deletes it.
cv = dbOpenCellViewByType("test" "hierTop" "layout" "maskLayout" "a")
dbSetHierCacheUsage("saveAndLoad" cv)
dbSave(cv)
dbHasValidHierCache(cv)
=> t
dbDeleteHierCache(cv)
=> t
dbHasValidHierCache(cv)
=> nil
Related Topics
dbSetHierCacheUsage
Return to top