model.result(<pgtag>) returns a plot group with tag
<pgtag>.
model.result().create(<pgtag>,dim) creates a plot group with the tag
<pgtag>, of dimension
dim, where
dim can be
1,
2, or
3.
model.result().create(<pgtag>,ftype) creates a plot group of type
ftype.
model.result().autoplot() returns true if plot features are plotted automatically when selected.
model.result().autoplot(true) and
model.result().autoplot(false) enable and disable automatic plotting, respectively.
model.result(<pgtag>).create(<ftag>,ftype) creates a plot feature of type
ftype tagged
<ftag> belonging to the plot group
<pgtag>.
model.result(<pgtag>).feature(<ftag>).getType() returns the type of the feature
<ftag>. This is the same string
ftype that was used to create the feature.
model.result(<pgtag>).feature(<ftag>).getPlotGroup() returns the plot group the feature belongs to.
This method is also available on the child features.
model.result(<pgtag>).feature(<ftag>).create(<attrtag>, attrtype) creates an attribute feature with the tag
<attrtag> of type
attrtype, belonging to the feature
<ftag>.
model.result().dataset().create(<dtag>,dtype) creates a data set feature with the tag
<dtag> and the type
dtype.
model.result().export().create(<etag>,<pgtag>,etype) creates an export feature with the tag
<etag>, belonging to plot group
<pgtag> and of export type
etype.
model.result().numerical().create(<ntag>, ntype) creates a numerical results feature with the tag
<ntag> of the numerical feature type
ntype.
model.result().numerical(<ntag>).run() evaluates the numerical results feature.
model.result(<tag>).feature(<ftag>)).getAllowedPropertyValues(property),
model.result().dataset(<dtag>).getAllowedPropertyValues(property),
model.result().export(<etag>).getAllowedPropertyValues(property), and
model.result().report(<rtag>).
getAllowedPropertyValues(property)return the set of allowed values for a property if the set is a finite set of strings; otherwise, they return null.
model.result().table().create(<ftag>,ntype) creates a table feature with the tag
<ftag>. The set and get methods used to manipulate tables are described in
Table.
report.feature("<tptag>).set(prop,value) sets the title-page property
prop to the value
value.
To add a report contents feature — that is, a feature corresponding to content in the report — to a report section feature section, type,
section.create(<frtag>,frtype,…). Depending on the report feature type
frtype, the create operation includes zero, one or two tags that refer to the model feature to report about. The tags must refer to an existing feature of the correct type. The following report feature types are available:
To point a report feature rFeature to another feature with tag
<ftag> in the tree, use the method
rFeature.set("noderef",<ftag>) method. A report contents feature must point to a feature of the type it is designed to report on; see the table above. Instead of a feature tag, set
"noderef" to
"none" to clear a reference.