dbReplacePropList
dbReplacePropList(
g_object
l_params
)
=> t / nil
Description
Replaces the specified list of properties (l_params) in the given object. dbReplacePropList will trigger Pcell evaluation once as an atomic operation.
Arguments
Value Returned
Examples
dbReplacePropList(cv list( list("prop1" "int" 100)
list("prop2" "string" "hello") ) )
dbReplacePropList(cv '(("enable" "boolean" t) ("a" "int" 3) ("b" float" 4.3u)))
dbReplacePropList(cv '(("enable" "boolean" t)))
dbReplacePropList(cv '(("enable" "boolean" "TRUE")))
dbReplacePropList(cv '(("count" "int" 3)))
dbReplacePropList(cv '(("pdkinfo" "ILList" ((1 2 3) (4 5 6) (("hello" "world"))))))
Related Topics
Property Creation and Modification Functions
Return to top