Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

occpSave

occpSave(
o_occpHandle 
)
=> t / nil

Description

Saves a properties file opened with occpOpen and keeps it open. Only saved updates are reflected when other tools access the file.

Arguments

o_occpHandle

The properties file handle returned from a call to occpOpen.

Value Returned

t

The properties file was saved.

nil

The properties file was not saved. The reasons could be that the file was not found, it was not open, or it did not have any changes to save.

Example

MyHdbHandle = hdbOpen("lib1" "cell1" "cfgView1" "a" "CDBA")
when( MyHdbHandle
    MyOccpHandle = occpOpen("lib1" "cell1" "cfgView1" "a" "CDBA")
    when( MyOccpHandle
     occpSetCellProp(MyOccpHandle "lib1" "cell1" occpCreateProp("variant"
"lowPower"))
occpSave(MyOccpHandle)
occpClose(MyOccpHandle) )
(hdbClose MyHdbHandle) )

Related Topics

Hierarchy Database Functions

Occurrence Property Functions

Parent/Child Database Functions


Return to top
 ⠀
X