vfpSbDeleteObstruction
vfpSbDeleteObstruction(
l_PhysLCV
t_obstructionType
[ ?topOffset n_topOffset ]
[ ?bottomOffset n_BottomOffset ]
[ ?leftOffset n_LeftOffset ]
[ ?rightOffset n_RightOffset ]
[ ?layerName t_layerName ]
)
=> t / nil
Description
Deletes the specified obstruction.
Arguments
|
l_PhysLCV
|
List of ("lib" "cell" "view") triplets
|
|
t_obstructionType
|
Type of obstruction to be deleted. The valid values are: "placement", "routing", "fill", "slot", "pin", "feedthru", and "screen".
|
|
?topOffset n_topOffset
|
|
|
Top offset of the obstruction
|
|
?bottomOffset n_BottomOffset
|
|
|
Bottom offset of the obstruction
|
|
?leftOffset n_LeftOffset
|
|
|
Left offset of the obstruction
|
|
?rightOffset n_RightOffset
|
|
|
Right offset of the obstruction
|
|
?layerName t_layerName
|
|
|
Layer name. This argument is ignored when the obstructionType is “placement”.
|
Value Returned
|
t
|
The obstruction was successfully deleted.
|
|
nil
|
The command was unsuccessful.
|
Example
vfpSbDeleteObstruction(list("design" "block1" "layout") "placement" ?leftOffset 20 ?rightOffset 30 ?bottomOffset 50 ?topOffset 2 ?layerName "metal1")
Return to top