Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

dbGetRowRegionAttachedToPRBoundary

dbGetRowRegionAttachedToPRBoundary(
d_prBoundaryId
) 
=> d_rowRegionId / nil

Description

Returns the database ID of the rowRegion attached to the given PRBoundary.

Arguments

d_prBoundaryId

Database ID of a PRBoundary.

Value Returned

d_rowRegionId

Database ID of the rowRegion attached to the specified PRBoundary.

nil

Returned when no rowRegion is attached to the PRBoundary.

Examples

Returns the database ID of the rowRegion attached to PR boundary prb.

;; Create RowRegion and PRBoundary.
         rowRegion = dbCreateRowRegion(cv "rowRegion" "newRowRegionSpec" point)
         prb = dbCreatePRBoundary(cv list(list(0 0) list(100 0) list(100 100) list(0 100)))
         ;; Attach RowRegion to PRBoundary and query the rowRegion ID attached to the PRBoundary
         dbAttachRowRegionToPRBoundary(rowRegion)
         dbGetRowRegionAttachedToPRBoundary(prb)

Related Topics

Placement Database Access Functions


Return to top
 ⠀
X