53a610091a8111a30d2324d8f6d291a76c19690f
Guides/Toolbar-Buttons.md
| ... | ... | @@ -353,6 +353,37 @@ AdHocSettings.ShowSqlOutputIcon = false; |
| 353 | 353 | |
| 354 | 354 | ###CSV |
| 355 | 355 | |
| 356 | - |
|
| 356 | + |
|
| 357 | + |
|
| 358 | +THE CSV Export button causes the report being designed to be exported in csv format. To disable it, set ShowCSVButton to false. |
|
| 359 | + |
|
| 360 | +```csharp |
|
| 361 | +AdHocSettings.ShowCSVButton = false; |
|
| 362 | +``` |
|
| 363 | + |
|
| 364 | +###Excel |
|
| 365 | + |
|
| 366 | + |
|
| 367 | + |
|
| 368 | +The Excel Export button causes the report being designed to be exported in excel format. To disable it, set ShowXLSButton to false. |
|
| 369 | + |
|
| 370 | +```csharp |
|
| 371 | +AdHocSettings.ShowXLSButton = false; |
|
| 372 | +``` |
|
| 373 | + |
|
| 374 | +###Word |
|
| 375 | + |
|
| 376 | + |
|
| 377 | + |
|
| 378 | +The Doc Export button exports the report being designed to in a .doc(MS Word) format. To disable it, set ShowDOCButton to false. |
|
| 379 | + |
|
| 380 | +```csharp |
|
| 381 | +AdHocSettings.ShowDOCButton = false; |
|
| 382 | +``` |
|
| 383 | + |
|
| 384 | + |
|
| 385 | + |
|
| 386 | + |
|
| 387 | + |
|
| 357 | 388 | |
| 358 | 389 | ##Tabs |
| ... | ... | \ No newline at end of file |