dbGetRowRegionAttachedToPRBoundary
dbGetRowRegionAttachedToPRBoundary(d_prBoundaryId) =>d_rowRegionId/ nil
Description
Returns the database ID of the rowRegion attached to the given PRBoundary.
Arguments
Value Returned
|
Database ID of the rowRegion attached to the specified 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