leReplace
leReplace(
d_cellViewId
l_objects
l_replaceValues
)
=> t / nil
Description
Replaces the specified values on the specified list of objects in the cellview d_cellViewId.
Arguments
|
List of properties or attributes whose values are replaced. The list format is the same as l_criteriaList for |
Value Returned
Example
Changes the layers of path1 and path2 to metal1 drawing and changes their widths to 5.0.
leReplace( cell2 list(path1 path2) list(list("layer" nil list("metal1" "drawing")) list("path width" == 5.0)) )
Return to top