RE: Notes XML Exporter Stan Rogers 18.May.17 02:22 AM a Web browser Applications Development All ReleasesAll Platforms
No. You would need to pass the document (or document/note collection). The help entry specifically says what you can set the input to when using the NotesDXLExporter class. "All other processes" refers to other classes - not the NotesDXLExporter - that inherit from the NotesXMLProcessor abstract class. If you only want a DXL/XML representation of a rich text item, you would need to pass the result to a NotesDOMProcessor, then use the appropriate DOM methods to extract the rich text item node, or to a NotesSAXProcessor and look for the node you want. (Or you could just work on the string as a string, but that may present difficulties with encoding.)