clePartitionGetAreaBoundaries
clePartitionGetAreaBoundaries(d_cellViewID t_name) =>l_areaBoundaries/ nil
Description
Returns a list of database IDs of area boundaries attached to the specified design partition.
Arguments
|
Database ID of the cellview in which the design partition is defined. |
|
Value Returned
|
List of database IDs of area boundaries associated with the specified design partition. |
|
|
No area boundary is associated with the specified design partition. |
Examples
Returns the list of database IDs of area boundaries associated with the design partition cle_p1.
clePartitionGetAreaBoundaries(geGetEditCellView() "cle_p1")
=> (db:0x2200c59a db:0x2200c59c)
Returns the list of the names of area boundaries associated with the design partition cle_p2.
clePartitionGetAreaBoundaries(geGetEditCellView() "cle_p2")~>name
=> ("P2_AB1 "P2_AB2")
Return to top