MarkerNames
Returns the list of marker variable names in the document.
Syntax
doc.MarkerNames()
Return
Returns the list of marker variable names in the document.
Note
You can also use global function nex.MarkerNames(doc)
:
import nex
doc = nex.GetActiveDocument()
namesOfMarkerVars = nex.MarkerNames(doc)
Examples
Python
import nex
doc = nex.GetActiveDocument()
namesOfMarkerVars = doc.MarkerNames()