Output file formats for conversion of documents and generation of search reports
C#
public enum OutputFormats {
itHTML = 226,
itAnsi = 202,
itRTF = 212,
itUTF8 = 238,
itXML = 234,
itUnformattedHTML = 256,
it_ContentAsXml = 108
}
Members
Members |
Description |
---|---|
itHTML |
HTML |
itAnsi |
Ansi text |
itRTF |
Microsoft Rich Text Format |
itUTF8 |
Unicode |
itXML |
XML |
itUnformattedHTML |
HTML, with all formatting removed |
it_ContentAsXml |
Output format for FileConverter that organizes document content, metadata, and attachments into a standard XML format |
See Also