5152c24886c07c69116d33a902fce3973e5b9879
FAQ/accessing-izendas-export-process.md
| ... | ... | @@ -26,7 +26,7 @@ foreach (string fileName in Directory.EnumerateFiles(AdHocSettings.ReportsPath)) |
| 26 | 26 | { |
| 27 | 27 | message = e.Message; |
| 28 | 28 | } |
| 29 | - Console.Write(message); |
|
| 29 | + Console.WriteLine(message); |
|
| 30 | 30 | } |
| 31 | 31 | ``` |
| 32 | 32 | |
| ... | ... | @@ -57,6 +57,7 @@ foreach (string fileName in Directory.EnumerateFiles(AdHocSettings.ReportsPath)) |
| 57 | 57 | { |
| 58 | 58 | message = e.Message; |
| 59 | 59 | } |
| 60 | + Console.WriteLine(message); |
|
| 60 | 61 | } |
| 61 | 62 | |
| 62 | 63 | This method provides a bit better control over the process, since it works with the explicitly defined .NET types within the Izenda framework. The previous method requires knowledge of the specific output type codes used and only works with iTextSharp as the PDF export. |