ElementPars Object

This object permits retrieval of parameters & local variables defined in the footprint for use in a script. Retrieval of this object was discussed under LayoutHost.

Count

Contains the number of parameters in this object. This property is read-only.

Example:

var pars = LayoutHost.Pars;

var numPars = pars.Count;

Item

Contains the given parameter in this object. The item may be retrieved by index (zero based) or name. The name is not case sensitive. This property is read-only.

Example:

var pars = LayoutHost.Pars;

var w = pars.Item(0);

var p = pars.Item(“p”);

ElementPars Methods

There are no methods for the ElementPars object.

Related Topics

ElementPars Properties

ElementPars Methods