schCreateNoteShape
schCreateNoteShape(d_cvId t_type t_lineStyle l_points[n_width] ) =>d_shape/ nil
Description
Creates note shapes in a schematic or symbol cellview with the attributes and properties you specify. These shapes do not affect the connectivity but can be useful for annotation.
Arguments
Value Returned
Examples
Creates a rectangle in the specified cellview whose lower left corner is at 0,0 and upper right corner is at 10,10. The boundary of the rectangle is displayed as a solid line.
shapeId = schCreateNoteShape( cv "rectangle" "solid" list(0:0 10:10) )
Return to top