I am converting a command-line based tool I built (using Excel sheets via GemBox.Spreadsheet) to Xamarin / UWP and am trying to figure out the best way to save out my XLSX data given the storage protection inherent in a UWP app.
If I just try to use the ExcelFile.Save()
method I get protected storage errors and I haven’t found a way to stream that data through Windows.Storage
successfully.
Has anyone done this, or is there a guide or some samples using GemBox.Spreadsheet to take my formatted workbook and save it out of a UWP app?