mptDeleteClusters
mptDeleteClusters(
d_cellViewID
[ ?layers l_layers ]
[ ?checkOnly g_checkOnly ]
[ ?thruHierarchy g_thruHierarchy ]
[ ?openForEdit g_openForEdit ]
)
=> t / nil
Description
Removes coloring clusters in the specified cellview.
Arguments
|
d_cellViewID
|
The database ID of the cellview.
|
|
?layers l_layers
|
List of layers from which to remove the coloring clusters. If nil, the coloring clusters are removed from all layers. The default is nil.
|
|
?checkOnly g_checkOnly
|
|
|
Specifies whether the cellview has coloring clusters to be deleted. The default is nil.
|
|
?thruHierarchy g_thruHierarchy
|
|
|
Specifies whether the coloring clusters must be deleted from the top-level cellview and cellviews within the hierarchy. The default is nil.
|
|
?openForEdit g_openForEdit
|
|
|
Specifies whether a cellview has clusters to be deleted, but it is read-only. If t, opens for edits, read-only cellviews that have clusters to be deleted. The default is nil.
|
Values Returned
|
t
|
Coloring clusters were removed.
|
|
nil
|
Coloring clusters were not removed.
|
Examples
mptDeleteClusters( geGetEditCellView() )
Removes top-level coloring clusters on all the layers for the current edit cellview.
Return to top