990f74afe33eacde5eeb3856b06f6e00402b1c23
Guides/Toolbar-Buttons.md
| ... | ... | @@ -375,15 +375,62 @@ AdHocSettings.ShowXLSButton = false; |
| 375 | 375 | |
| 376 | 376 |  |
| 377 | 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. |
|
| 378 | +The Doc Export button exports the report being designed in a .doc(MS Word) format. To disable it, set ShowDOCButton to false. |
|
| 379 | 379 | |
| 380 | 380 | ```csharp |
| 381 | 381 | AdHocSettings.ShowDOCButton = false; |
| 382 | 382 | ``` |
| 383 | 383 | |
| 384 | +###XML |
|
| 384 | 385 | |
| 386 | + |
|
| 385 | 387 | |
| 388 | +The XML export button exports the report being designed as a .xml file. |
|
| 386 | 389 | |
| 390 | +###RTF |
|
| 387 | 391 | |
| 392 | + |
|
| 393 | + |
|
| 394 | +The RTF export button exports the report being designed as a .rtf file. To disable it, set ShowRTFButton to false. |
|
| 395 | + |
|
| 396 | +```csharp |
|
| 397 | +AdHocSettings.ShowRTFButton = false; |
|
| 398 | +``` |
|
| 399 | + |
|
| 400 | +###Email |
|
| 401 | + |
|
| 402 | + |
|
| 403 | + |
|
| 404 | +The email button allows the user to email the current report. To disable it, set ShowClientEmailButton to false. |
|
| 405 | + |
|
| 406 | +```csharp |
|
| 407 | +AdHocSettings.ShowClientEmailButton = false; |
|
| 408 | +``` |
|
| 409 | + |
|
| 410 | +###Settings |
|
| 411 | + |
|
| 412 | + |
|
| 413 | + |
|
| 414 | +The settings button takes the user to the Settings.aspx page. To disable it, set ShowSettingsButton to false. |
|
| 415 | + |
|
| 416 | +```csharp |
|
| 417 | +AdHocSettings.ShowSettingsButton = false; |
|
| 418 | +``` |
|
| 419 | + |
|
| 420 | +###Results |
|
| 421 | + |
|
| 422 | + |
|
| 423 | + |
|
| 424 | +The Results dropdown allows the user to select how many records to display. |
|
| 425 | + |
|
| 426 | +###Hide Help |
|
| 427 | + |
|
| 428 | + |
|
| 429 | + |
|
| 430 | +The Hide Help button toggles the side help panel.TO disable it, set ShowHelpButton to false. |
|
| 431 | + |
|
| 432 | +```csharp |
|
| 433 | +AdHocSettings.ShowHelpButton = false; |
|
| 434 | +``` |
|
| 388 | 435 | |
| 389 | 436 | ##Tabs |
| ... | ... | \ No newline at end of file |