Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

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

d_cellViewID

Database ID of a cellview.

t_designPartition

Name of the design partition.

d_areaBoundaryID | t_areaBoundaryName

Database ID or the name of the area boundary.

Value Returned

t

Area boundary is attached to the specified design partition.

nil

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
 ⠀
X