Highlighting Shapes in a Cellview
To highlight shapes in a cellview:
-
Create a highlight set using
geCreateHilightSet. Indicate the cellview and layer on which to draw the shapes. You can also indicate that the set is non-global by setting g_notGlobal tot. -
Add shapes to the highlight set with the
geAddHilightfunctions. You can also remove shapes from a highlight set with thegeDeleteHilightfunctions. -
Enable the highlight set by setting the enable attribute with
hlSetId->enable = t. -
If the highlight set is non-global, use
gePushHilightStackto draw the highlight set andgePopHilightStackto remove the highlight set from the cellview. -
If you want to change the layer of a highlight set, set the attribute with:
hlSetId->layer = list("layer_name" "layer_purpose") -
If you want to disable the highlight set, reset the
enableattribute with:hlSetId->enable = nil
Related Topics
Return to top