pcGetParamSlotType
pcGetParamSlotType(g_device s_propName) =>t_paramType
Description
Checks the type contained in the parameter slot propName of the given device. Parameter type is a string whose value is int, float, string, or iLList.
Arguments
|
A SKILL++ Pcell class object that is inherited from class |
|
Value Returned
|
The type contained in the parameter slot |
Examples
pcell = makeInstance( 'CORE )
pcGetParamSlotType(pcell 'cyanW)
Returns the type of cyanW as float.
Return to top