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
|
Database ID associated with the marker to which you want to assign a name. |
|
Value Returned
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
Return to top