I’m trying to load a plain text document that uses cr\lf characters to indicate line breaks. When loading into a Document object via the constructor these characters appear to be ignored. Is there a flag or an option to set that will tell Aspose to treat crlf as a hard return?
Example:
Line one[0x0a][0x0d]
Line two[0x0a][0x0d]
Line three
When this is loaded into a Document object all the lines run together:
Line oneLine twoLine three
Thanks.