class %ZEN.Report.Models.Group.Document
extends %RegisteredObject, %XML.Adaptor
parameter XMLNAME = "document";
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 footerHeight
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "0" ];
Specifies the amount of room available for the contents of the <pagefooter> tag.
property headerHeight
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "0" ];
Specifies the amount of room available for the contents of the <pageheader> tag.
property height
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "11in" ];
Specifies the height of the document.
property marginBottom
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "1in" ];
Specifies the bottom margin of the document. This does not include the
space left for the footer.
property marginLeft
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "1.25in" ];
Specifies the left margin width of the document.
property marginRight
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "1.25in" ];
Specifies the right margin width of the document.
property marginTop
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "1in" ];
Specifies the top margin of the document. This does not include the
space left for the header.
property width
as %ZEN.Datatype.length(XMLPROJECTION="attribute") [ InitialExpression = "8.5in" ];
Specifies the width of the document.