cleGetPartitions
cleGetPartitions(d_cellViewID) =>l_partitionNames/ nil
Description
Lists the names of all Concurrent Layout design partitions defined in the specified cellview.
Arguments
|
Database ID of the cellview from which you want to retrieve the design partition names. |
||
Value Returned
|
List of names of all design partitions defined in the specified cellview. |
|
|
There are no design partitions defined in the specified cellview. |
Examples
Lists the names of three design partitions cle_p1, cle_p2, and cle_p3 defined in the cellview cvId.
cleGetPartitions(cvId)
=> ("cle_p1" "cle_p2" "cle_p3")
Return to top