"curveNames"

The attribute "curveNames" returns the names of trend curves.

Synopsis

getValue( string shape, " curveNames ", int area, dyn_string &names);

Parameters

Parameter Description
shape Name of the object
area The area (ID). Index starts from 0.
names The names of trend curves

Description

The attribute "curveNames" returns the names of trend curves.

Example

The following example returns the names of trend curves for the area 2.

  int ar = 1;
  //index starts from 0
  dyn_string a_names;
  getValue("","curveNames",ar,a_names);
  DebugN("The curve names for the area 2",ar," ",a_names);

Assignment

Trend