dbHasValidHierCache
dbHasValidHierCache(d_cvId) =>t / nil
Description
Checks whether the specified cellview has a valid hierarchical cache file.
Arguments
|
Database ID of the cellview to be checked for a hierarchical cache. |
Value Returned
Example
Checks whether the cellview has a hierarchical cache file before the cache file has been created.
cv = dbOpenCellViewByType("test" "hierTop" "layout" "maskLayout" "a")
dbSetHierCacheUsage("saveAndLoad" cv)
dbHasValidHierCache(cv)
=> nil
Checks whether the cellview has a hierarchical cache file after the file has been created.
dbSave(cv)
dbHasValidHierCache(cv)
=> t
Related Topics
Return to top