GetDocPath
Returns the full path of the data file.
Syntax
GetDocPath(doc)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
Return
Returns the full path of the data file.
Examples
Python
import nex
doc = nex.GetActiveDocument()
path = nex.GetDocPath(doc)
NexScript
doc = GetActiveDocument()
path = GetDocPath(doc)