dbGetRowBackgroundDef
dbGetRowBackgroundDef( d_rowId ) => l_bgDefId / nil
Description
Returns a list of backgroundDefs in the specified custom row.
Arguments
Value Returned
Examples
Returns a list of backgroundDefs in the specified row.
; Create custom row.
row = dbCreateRow(cv siteDef "row" list(3 3) 10 "R0")
;; Add backgroundDef to custom row.
dbAddRowBackgroundDef(row bgDef1)
dbAddRowBackgroundDef(row bgDef2)
;; Get the list of backgroundDefs on the custom row.
dbGetRowBackgroundDef(row)
Related Topics
Placement Database Access Functions
Return to top