MarkerVars

Returns the list of marker variables in the document.

Syntax

doc.MarkerVars()

Return

Returns the list of marker variables in the document.

Note

You can also use global function nex.MarkerVars(doc):

import nex
doc = nex.GetActiveDocument()
markers = nex.MarkerVars(doc)

Examples

Python

import nex
doc = nex.GetActiveDocument()
markers = doc.MarkerVars()