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

dbSetMarkerName

dbSetMarkerName(
d_markerId
t_markerName
)
=> t / nil

Description

Assigns the specified name to the marker associated with the given marker ID. The name can be an empty string. The name can be an empty string. By default, the markers are first sorted by names and then by their box.

Arguments

d_markerId

Database ID associated with the marker to which you want to assign a name.

t_markerName

Name to be assigned to the marker ID.

Value Returned

t

Marker name was successfully assigned.

nil

Marker name was not assigned.

Examples

Creates a new marker with the specified list of points. You can assign a specific name to this marker.

m1 = list( (-2.0:-2.0) (-2.0:2.0) (2.0:2.0) (2.0:-2.0) (-2.0:-2.0) )
marker1 = dbCreateMarker(cv "marker1 - annotation type marker" "layout" m1 nil t t "annotation" "annotation marker")
dbSetMarkerName(marker1 "foo")
=> t

Related Topics

Marker Functions


Return to top
 ⠀
X