Writes data to a simple HTML file. All data will be converted to text, and the four control characters will be escaped as " ("), & (&), < (<), and > (>).
If more control over the format of the output is needed, use the core node Output XML, which this node inherits from.
Properties
DocumentTitle
Specify the title of the output HTML document.
File
Click the folder icon and browse to the file to which you want to output the data, then click Choose.
To create a new file, click the folder icon and navigate to the folder where you want to output the file, then enter a name for the file in the Filename field and click Choose.
A value is required for this property.
FieldNames
Optionally specify whether to write a list of field names, as a header line, as the first Record just before the data block. Choose from:
- None - No separate header line, just the data.
- Name - A header record of field names.
- Name:Type - Formatted style <field name>:<data type> header.
The default value is None.
NullValue
Optionally specify the value to be emitted in place of NULL.
The default value is "0".
DocumentHeader
Optionally specify the HTML to be written at the beginning of the output file.
DocumentFooter
Optionally specify the HTML to be written at the end of the output file.
RecordHeader
Optionally specify the HTML to be written at the beginning of each record. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
RecordFooter
Optionally specify the HTML to be written at the end of each record. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
FieldHeader
Optionally specify the HTML to be written at the beginning of each data field. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
The literal text FIELDNAME will be replaced with the field name, and the literal text FIELDTYPE will be replaced with the data type (string, int, etc.) of that specific data field.
FieldFooter
Optionally specify the HTML to be written at the end of each data field. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
The literal text FIELDNAME will be replaced with the field name, and the literal text FIELDTYPE will be replaced with the data type (string, int, etc.) of that specific data field.
NameHeader
Optionally specify the HTML to be written at the beginning of each header field. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
If FieldNames is None, this property is ignored.
NameFooter
Optionally specify the HTML to be written at the end of each header field. Use \t for tab, \n for Unix-style newline, \r\n for Windows-style newline.
If FieldNames is None, this property is ignored.
Inputs and outputs
Inputs: in1.
Outputs: None.