The Field element defines a report object used to draw data on a report.
<!ELEMENT Field EMPTY>
<!ATTLIST Field
Field CDATA #REQUIRED
Text CDATA #REQUIRED
X CDATA #REQUIRED
Y CDATA #REQUIRED
Width CDATA #REQUIRED
Height CDATA #REQUIRED
BackgroundColor CDATA #REQUIRED
ForegroundColor CDATA #REQUIRED
BorderColor CDATA #REQUIRED
BorderWidth CDATA #REQUIRED
BorderStyle CDATA #REQUIRED
FontFamily CDATA #REQUIRED
FontSize CDATA #REQUIRED
FontWeight CDATA #REQUIRED
FontItalic CDATA #REQUIRED
HAlignment CDATA #REQUIRED
VAlignment CDATA #REQUIRED
WordWrap CDATA #REQUIRED
DataType CDATA #REQUIRED
DateFormat CDATA #REQUIRED
Precision CDATA #REQUIRED
Currency CDATA #REQUIRED
NegValueColor CDATA #REQUIRED
CommaSeparator CDATA #REQUIRED>
Sets the data field for the object. This is a row attribute from a “MetaphrastRowset” data document.
Sets the background color of the field. he color is defined as an RGB value (r,g,b). r, g and b must be in the range 0..255.
Sets the foreground color of the field. The color is defined as an RGB value (r,g,b). r, g and b must be in the range 0..255.
Sets the border color of the field. The color is defined as an RGB value (r,g,b). r, g and b must be in the range 0..255.
Sets the field's date format. For this to work, the format of the date from the data document must be in the format mm/dd/yyyy or mm-dd-yyyy, otherwise the original date format is used. If data type other than date, set to 0.
Sets the field's numeric precision. If data type other than a numeric type, set to 0.
Sets the field's currency symbol If data type other than currency, set to 36 ($). The value is a number representing a Unicode character.
Sets the color for negative numeric values. The color is defined as an RGB value (r,g,b). r, g and b must be in the range 0..255. If data is other than a numeric type, set to 255,0,0.
Sets whether commas are used in numeric fields. If data type other than a numeric type, set to 0.