Product Documentation
Virtuoso Parameterized Cell SKILL Reference
Product Version IC23.1, August 2023

pcDefineParamSlot

pcDefineParamSlot(
g_type
g_value
g_pcIsParamSlot
) 
=> l_paramDefDPL

Description

Constructs a parameter DPL, which is used to define a parameter slot of the specified device.

Arguments

g_type

A string defining the parameter type. Valid values are string, int, float, and ILList.

g_value

The value of the parameter slot.

g_pcIsParamSlot

A Boolean, which indicates whether it is a parameter slot.

Default value is t.

Value Returned

l_paramDefDPL

The created parameter DPL.

Examples

defclass( CORE ( pcParamClass )
    (
     (cyanW @initform pcDefineParamSlot("float" 0.6))
(cyanL @initform pcDefineParamSlot("float" 0.2))
(greenW @initform pcDefineParamSlot("float" 0.2))
(greenL @initform pcDefineParamSlot("float" 0.8))
(coreBBox @initarg coreBBox)
)
)

Constructs a parameter DPL, which is used to define a parameter slot of pcParamClass.


Return to top
 ⠀
X