vfoGRDisableVersionCache
vfoGRDisableVersionCache(l_FGRcellDDID t_libName[?cellNamet_cellName] [?viewNamet_viewName] ) => t / nil
Description
Disables version cache for all instances that belong to the specified super-master list and found in the specified library, cell, or view. All instances are updated and the value of their createVersionCache parameter is set to 0.
The function
vfoGRDisableVersionCache calls the dbSave function in the background, so any unsaved changes in the layout cellview are saved when the vfoGRDisableVersionCache function is called.Arguments
Value Returned
Example
The following code snippet shows how to disable version cache on all instances of the device reflib/FGR2 in all layout cellviews in the library reflib.
devids = ddGetObj("reflib" "FGR2")
lst=list(devids)
vfoGRDisableVersionCache(lst "reflib")
Return to top