MarkerFieldNames

Returns the list of marker field names of the NexVar object representing marker variable.

Syntax

var.MarkerFieldNames()

Return

Returns the list of marker field names of the NexVar object representing marker variable.

Note

Python only.

Examples

Python

import nex
doc = nex.GetActiveDocument()
fieldNames = doc['Strobed'].MarkerFieldNames()
#print the name of the first marker field
print(fieldNames[0])