clePartitionAttachAreaBoundary
clePartitionAttachAreaBoundary(d_cellViewID t_designPartition{d_areaBoundaryID|t_areaBoundaryName} ) => t / nil
Description
Attaches the name or ID of an existing area boundary to the specified design partition in the specified Concurrent Layout cellview.
Arguments
Value Returned
|
Area boundary is attached to the specified design partition. |
|
|
Area boundary is not attached to the specifeid design partition. |
Examples
Attaches the existing area boundary AB_1 to the design partition cle_p1 in the cellview cvId.
clePartitionAttachAreaBoundary(cvId "cle_p1" "AB_1")
=> t
Finds the database ID of an existing area boundary AB_1 and then attaches it to the design partition cle_p1 in the cellview cvId.
areaID = dbFindAreaBoundaryByName(cvId "AB_1")
clePartitionAttachAreaBoundary(cvId "cle_p1" areaID)
=> t
Return to top