Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
Base class for all nodes in the ReportDisplay XData block.
|
|
|
XML namespace used for Zen Report display definitions.
By setting this to 0, we disallow use of invalid attribute names in Zen Report XML documents.
XMLIGNORENULL allows the programmer to override the default XML handling of empty strings for properties of type %String. By default (XMLIGNORENULL = 0), empty strings in the XML input are stored as $c(0) and $c(0) is written to XML as an empty tag. A missing tag in the XML input is always stored as "" and "" is always output to XML as no tag.If XMLIGNORENULL is set = 1, then both missing tags in the XML and empty strings are input as "", and both "" and $c(0) are output as empty tags (i.e. <tag></tag>).
If XMLIGNORENULL is set = "inputonly", then both missing tags in the XML and empty strings are input as "". Output of "" and $c(0) are for XMLIGNORENULL = 0: $c(0) is output as an empty tag (i.e. <tag></tag>) and "" is output as no tag.
If XMLIGNORENULL = "runtime" (runtime is not case sensitive), then the behavior of XMLIGNORENULL is determined by the format parameter of XMLExport, XMLImport and %XML.Reader.OpenFile. The default behavior for XMLIGNORENULL="runtime is the same as XMLIGNORENULL=0. Adding "ignorenull" to the format argument changes the behavior to that of XMLIGNORENULL=1. "ignorenull" shoud be separated by a comma from literal/encoded part of the format. Example values for format are "", ",ignorenull", "literal,ignorenull" and "encoded,ignorenull". Note that "inputonly" is equivalent to using ,ignorenull for XMLExport and not for %XML.Reader.
|
Specifies the node's style class. Some classes come pre-defined when standard styling is specified for the report, and custom classes may be define by the <class> tag within the <document> tag. Note: parent tags propagate their class attribute to their children if the child class does not have an explicit class defined. In HTML tags, class is rendered using the class attribtue, and in XSL-FO tags it is rendered using the xsl:use-attribute-set attribute. It is a fatal error to specify a class that is not defined. For more information on classes, see the tag.
same as style only HTML only
use to pass down result set from table when table uses sql to generate itself
list of conditions - true one at index i selects style
list of styles - picked by first true index i in list of conditions for more information about individual values in list see style property
The style string is given in the form "attribute1:value1;attribute2:value2;...", just as in CSS. In general, the style string is directly copied into HTML tags as the style attribute. In XSL-FO, each attribute is rendered separately. That is, the resulting HTML tag would look like <tag style='attribute1:value1;...'/> and the resulting XSL-FO tag would look like <tag attribute1='value1' ... />.
stylecall - name of xsl:template to call to output style attributes
for each name here an xsl:with-param is generated with its name attribute set from here
list of xpaths, xpath function calls, and XSLT function calls. for each string here an xsl:with-param is generated with its select attribute set from here
Calculated property that contains the tag name of the node. This corresponds to the classname.
Specifies the template that can be used to add children to the node The format is:
Specifies the width of the element within its containing object (page, table cell, etc.)
used to flag table or item, etc., as being under a small mutiple
We use these to record namespace and namespace prefix for qualified name
same as style only XSL-FO only
|
This method outputs the stylesheet that converts the input xml to the xml with Excel annotations report, table and item should override this method. Nested tables not supported.
This method outputs the necessary stylesheet information for the HTML report. Every tag should override this method.
This method outputs the necessary stylesheet information for the PDF report. Every tag should override this method.
This is a Get accessor method for thetag property.