dbRemoveRowBackgroundDef
dbRemoveRowBackgroundDef(
d_rowId
d_bgDefId
) => t / nil
Removes the given backgroundDef from the specified custom row. Removing a backgroundDef also removes the background shape associated with the backgroundDef from the custom row.
Arguments
Value Returned
|
Returned when backgroundDef is successfully removed from the custom row. |
|
Examples
Rmoves the given backgroundDef from a custom row.
; create custom row
row = dbCreateRow(cv siteDef "row" list(3 3) 10 "R0")
;; Adding backgroundDef to the row.
dbAddRowBackgroundDef(row bgDef)
;; removing backgroundDef from the row.
dbRemoveRowBackgroundDef(row bgDef)
Related Topics
Placement Database Access Functions
Return to top