Component parameters
These parameters may determine the value of the component, whether the component is shown as placed or not placed, etc.
place parameter
Example:
from std import *
v5v = supply("5V")
gnd = dgnd()
C1 = cap(100n)
at v5v
wire down 100
add C1
wire down 100
to gnd
C1.place = false
frame:
at v5v
wire down 100
add cap(100n)
..place = false
wire down 100
to gnd