When using the StiWpfViewerControl to view a report, you can save the output in a variety of formats. By default, it selects the user's documents folder for the save location. How would one change that default location to, say, the user's desktop? It is probably straightforward, but I cannot seem to find it.
Thanks.
Default Save Location
Default Save Location
You can use the following Static Properties to change the default location when Saving or Exporting a report
Code: Select all
StiOptions.Viewer.Windows.ReportSaveLoadPath = @"C:\MyFolder";
StiOptions.Viewer.Windows.ExportSaveLoadPath = @"C:\MyFolder";
Default Save Location
Thanks! I knew it would be something simple; I just didn't see it.