Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

geSelectFigPoint

geSelectFigPoint( 
d_figId 
l_vertex 
) 
=> t / nil 

Description

Adds vertices of an object to the selected set if they pass the selection filter.

For vertex selection, rectangles are considered to have four vertices, starting with the lower-left point and moving counterclockwise.

Instances, mosaics, dots, and labels cannot be partially selected, so this function cannot be used on these types of objects.

Arguments

d_figId

Database ID of the object you want to select.

l_vertex

A list of Boolean values corresponding to the list of points for the object. Each Boolean specifies whether the corresponding vertex of the object should be selected or not. If there are fewer points in l_vertex than in the object, they are applied to the first vertices in the object and the remaining vertices are unaffected.
Valid Values: t, nil

Value Returned

t

The object passes the selection filter and is selected.

nil

The object does not pass the selection filter and is not selected.

Examples

Selects every other vertex on fig35.

geSelectFigPoint( fig35 list(t nil t nil t nil t nil) )

Related Topics

Selection Functions


Return to top
 ⠀
X