Markers

Returns the list of marker values of the NexVar object representing marker variable.

Syntax

var.Markers()

Return

Returns the list of marker values of the NexVar object representing marker variable.

Note

Python only.

Examples

Python

import nex
doc = nex.GetActiveDocument()
markerValues = doc['Strobed'].Markers()
#print the second marker value of the first marker field
print(markerValues[0][1])