occpSetPathProp
occpSetPathProp(o_occpHandleh_pathVectorId r_occpProp) =>t/ nil
Description
Sets the occurrence path property information. The new setting overwrites any existing occurrence path property setting.
Arguments
|
The properties file handle returned by |
|
|
The occurrence path for the property as returned from a call to |
|
Value Returned
Example
MyHdbHandle = hdbOpen("lib1" "cell1" "cfgView1" "a" "CDBA") when( MyHdbHandle MyOccpHandle = occpOpen("lib1" "cell1" "cfgView1" "a" "CDBA") when( MyOccpHandle MyPathVec = hdbCreatePathVector(MyHdbHandle)
hdbPushCell(MyPathVec "I42"
hdbGetTopLibName(MyHdbHandle)
hdbGetTopCellName(MyHdbHandle)
hdbGetTopViewName(MyHdbHandle) )
hdbPushCell(MyPathVec "J84" "lib2" "cell2" "view2")
occpSetPathProp(MyOccpHandle MyPathVec occpCreateProp("variant"
"lowCost"))
hdbDestroyPathVector(MyPathVec)
occpSave(MyOccpHandle)
occpClose(MyOccpHandle) ))
Related Topics
Parent/Child Database Functions
Return to top