pcUserGenerateProperty
pcUserGenerateProperty(d_object d_prop t_tag p_port) =>t / nil
Description
A user-defined procedure called by the compiler before it processes properties on any objects. The procedure is normally used to suppress property generation in the master Pcell.
Arguments
|
The database ID of the object to which the property is attached. |
|
|
Name for the object that can be used in any SKILL code generated. |
|
Value Returned
|
Compiler does not generate code to reproduce the property in the submaster Pcell. |
|
|
Compiler generates code to reproduce the property in the submaster Pcell as if the procedure were not called. |
Examples
procedure( pcUserGenerateProperty( obj prop tag port )
if( prop~>name == \"userSpecial\" t nil)
)
Suppresses code generation for a property called userSpecial.
Return to top