mptSetLayerColoringMethod
mptSetLayerColoringMethod(
{ d_cellViewID | d_techID }
l_layers
t_coloringMethod
)
=> t / nil
Description
Sets the default coloring method for the technology database, the design, or specified layers in the design.
Arguments
Values Returned
Examples
mptSetLayerColoringMethod( geGetEditCellView() nil "colorSpacing" )
Sets the default coloring method for the current design to colorSpacing.
mptSetLayerColoringMethod( geGetEditCellView() list( "m1" ) "connectedShapes" )
Sets the default coloring method for layer m1 of the current design to connectedShapes.
mptSetLayerColoringMethod( geGetEditCellView() nil nil )
Resets the default coloring method for the current design.
tfID = techGetTechFile( geGetEditCellView()->lib )
mptSetLayerColoringMethod( tfID nil "colorSpacing" )
Sets the default coloring method to colorSpacing for the technology database of the current cellview.
Return to top