pkxSetProp
pkxSetProp(pkx_Obj t_propName S_propType g_propValue) =>pkx_property/ nil
Description
(Virtuoso MultiTech Framework) Sets the specified properties on the specified package object.
Arguments
Value Returned
Example
Sets the property name "propInt", the property type 'int, and the property value 100 on the package object compDef.
prop = pkxSetProp(compDef "propInt" 'int 100)
Sets the property name "propString", the property type "string", and the property value "string prop value" on the package object compDef.
prop = pkxSetProp(compDef "propString" "string" "string prop value")
Related Topics
Return to top