schDrawSymbolPin
schDrawSymbolPin(d_cvId t_termName t_direction l_points) =>t_pinFigId/ nil
Description
Creates a symbol pin in the specified cellview by creating a terminal of the given name with the given direction and a polygon shape specified by the given list of points.
Can be used only when editing a symbol. d_cvId must be editable.
Arguments
Value Returned
Examples
Creates a pin with terminal A with input direction using a shape specified by four points.
pinFigId = schDrawSymbolPin( cvId "A" "input" list(0:0 0.0625:0 0.0625:0.0625 0:0.0625) )
Return to top