Metadata

Returns metadata of the NexVar object as Python dictionary.

Syntax

var.Metadata()

Parameters

Name

Return

Returns metadata of the NexVar object as Python dictionary (for example, wire and unit number for a neuron variable).

Note

Python only.

Examples

Python

import nex
doc = nex.GetActiveDocument()
var = nex.GetVar(doc, 1, 'neuron')
meta = var.Metadata()
print(meta)