class %DeepSee.Report.Model.Parameter
extends Element
parameter XMLNAME = "parameter";
This parameter provides the default XMLNAME for the class. If it is
empty then the class name will be used to construct a default XML name.
The default XMLNAME is used as the top level tag
when exporting objects and the export context
did not provide an XML container name.
property expression
as %ZEN.Datatype.expression;
Optional ObjectScript expression that can either be applied
to the value of this item (supplied as %val), or to provide an
arbitrary value for this item.
For example:
expression="%val*2"
expression="..ReportProp"
property field
as %ZEN.Datatype.classMember(MEMBERTYPE="SQLCOLUMN");
Name of field (column) in the current query that will
supply the value for this item.
property value
as %ZEN.Datatype.string;
Literal value used for a parameter value.
This is used if field is not defined.