schCreateInstBox
schCreateInstBox(d_cvId[l_bBox] ) =>d_id/ nil
Description
Creates an instance box in the given symbol cellview. This function uses a bounding box you specify or determines a bounding box from the pins and device shapes.
Arguments
Value Returned
Examples
Creates an instance box in the inv symbol cellview based on the pins and device shapes in the cellview.
cvId = dbOpenCellViewByType( "sample" "inv" "symbol" "" 'a )
boxId = schCreateInstBox( cvId )
Creates an instance box with the specified bBox coordinates.
boxId = schCreateInstBox( cvId list(0:0 2:2) )
Return to top