We are trying to read a fixed width file using Aspose but are running into issues because leading and trailing whitespace is removed. Which options should we use to read? See below for our sample code:
LoadOptions myOpts = new LoadOptions(); myOpts.AllowTrailingWhitespaceForListItems = false;
myOpts.LoadFormat = LoadFormat.Text;
myOpts.Encoding = System.Text.Encoding.UTF8;
Document doc = new Document(FileUpload1.PostedFile.FileName,myOpts);