1ada3eea8a73a62f0d127f2da3536f7b0e56150b
How-do-I-Add-bulk-CSV-to-the-report-viewer.md
| ... | ... | @@ -0,0 +1,28 @@ |
| 1 | +#How do I Add bulk CSV to the report viewer |
|
| 2 | + |
|
| 3 | +This code will show the bulk csv option export type in the Report Viewer. |
|
| 4 | + |
|
| 5 | +```C# |
|
| 6 | +//show (unhide) the option for bulk csv |
|
| 7 | + |
|
| 8 | +AdHocSettings.OutputTypes["BULKCSV"].Hidden = false; |
|
| 9 | + |
|
| 10 | +//hide the option for csv |
|
| 11 | + |
|
| 12 | +AdHocSettings.OutputTypes["CSV"].Hidden = true; |
|
| 13 | + |
|
| 14 | +``` |
|
| 15 | + |
|
| 16 | +String keys for other output types |
|
| 17 | + |
|
| 18 | +The string keys which are available are: |
|
| 19 | + |
|
| 20 | +* csv |
|
| 21 | +* pdf |
|
| 22 | +* doc |
|
| 23 | +* xls |
|
| 24 | +* sql |
|
| 25 | +* bulkcsv |
|
| 26 | +* xml |
|
| 27 | +* odt (open office) |
|
| 28 | +* rtf |
|
| ... | ... | \ No newline at end of file |