abeLayerToCellView
abeLayerToCellView(o_abeLayer t_layerName[ ?tilesg_tiles| ?noHolesg_noHoles] [ ?purposet_purposeName] [ ?maskColorg_maskColor] [ ?cellt_cellName] [ ?viewt_viewName] [ ?cvId d_cellviewID ] [ ?shapeIds { t | nil} } ) =>l_shapeIDs /t / nil
Description
Copies shapes from the ABE layer to the specified layer in the current ABE session cellview. Optional arguments specify the layer purpose, whether the shapes are copied without holes, and whether the shapes are copied as islands instead of primitive tiles.
Arguments
Values Returned
|
The function was not successful because ABE is not initialized or there was an argument error. |
Examples
Copies the shapes from the abe1 ABE layer to the Metal6:drawing layer-purpose pair.
abeLayerToCellView(abe1 "Metal6")
Copies the shapes from the abe1 ABE layer to the Metal6:dummy layer-purpose pair.
abeLayerToCellView(abe1 "Metal6" ?purpose "dummy")
Copies the shapes from the abe1 ABE layer to the Metal6:drawing layer-purpose pair with no holes in the copied shapes.
abeLayerToCellView(abe1 "Metal6" ?noHoles)
Copies the shapes as primitive tiles from the abe1 ABE layer to the Metal6:drawing layer-purpose pair.
abeLayerToCellView(abe1 "Metal6" ?tiles)
Copies the shapes from the abe1 ABE layer to the cellview corresponding to input cellview ID.
abeLayerToCellView( abe1 "Metal6" ?cvId cellViewId)
Copies the shapes from the abe1 ABE layer to the cellview corresponding to the name as specified in the input.
abeLayerToCellView( abe1 "Metal6" ?cell "cellName" ?view "viewName")
Copies the shapes from the abe1 ABE layer to the Metal6:drawing layer-purpose pair and returns the list of shape IDs.
abeLayerToCellView(abe1 "Metal6" ?shapeIds t)
Copies the shapes from the abe1 ABE layer to the Metal:drawing layer-purpose pair and assigns the mask2Color to the copied shapes.
abeLayerToCellView(abe1 "Metal1" ?maskColor "mask2Color")
Related Topics
Return to top