Guides/Toolbar-Buttons.md
... ...
@@ -375,15 +375,62 @@ AdHocSettings.ShowXLSButton = false;
375 375
376 376
![Doc Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/wordDesigner.gif)
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
+![XML Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/xmlDesigner.gif)
385 387
388
+The XML export button exports the report being designed as a .xml file.
386 389
390
+###RTF
387 391
392
+![RTF Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/rtfDesigner.gif)
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
+![Email Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/email.gif)
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
+![Settings Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/settings.gif)
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
+![Results Per Page Dropdown](http://wiki.izenda.us/Guides/Toolbar-Buttons/results.png)
423
+
424
+The Results dropdown allows the user to select how many records to display.
425
+
426
+###Hide Help
427
+
428
+![Show/Hide Help Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/help.gif)
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