mptUpdateColor
mptUpdateColor(d_cellViewID[l_layers] [g_depth] ) => t / nil
Description
Updates the color information from the bottom hierarchically, according to the specified depth and layers. This is useful when the color engine has been switched off/on, or a third party tool has been used to modify color information, leaving color information in an out-of-date state.
This function is similar to mptReColor but runs more quickly in cases when only some of the design is out of date, because valid color information is not recomputed. If the design has never been colored, this function works the same as mptReColor.
Arguments
Values Returned
|
There was an error so the color information update was not completed. |
Example
mptUpdateColor( geGetEditCellView() )
Updates the color for the hierarchy starting from the current top cell displayed in the current layout edit window.
mptUpdateColor( geGetEditCellView() list( "m1" "m2" ) )
Updates the color for the current edit cellview through the entire hierarchy on layers m1 and m2.
mptUpdateColor( geGetEditCellView() nil 2 )
Return to top