C#
public enum OutputFormat {
itHTML = 226,
itAnsi = 202,
itRTF = 212,
itXML = 234,
itUTF8 = 238,
itUnformattedHTML = 256,
itContentAsXml = 108
}
Members
Members |
Description |
---|---|
itHTML |
HTML |
itAnsi |
ANSI text |
itRTF |
RTF |
itXML |
XML |
itUTF8 |
Unicode encoded as UTF-8 (if output is directed to a string, the string will be UCS-16) |
itUnformattedHTML |
HTML without any formatting, for generating a synopsis that is HTML-encoded but that does not include formatting such as font settings, paragraph breaks, etc. |
itContentAsXml |
Output format for FileConverter that organizes document content, metadata, and attachments into a standard XML format |
Remarks
Values for FileConverter.OutputFormat and SearchReportJob.OutputFormat
See Also