Guides/Toolbar-Buttons.md
... ...
@@ -353,6 +353,37 @@ AdHocSettings.ShowSqlOutputIcon = false;
353 353
354 354
###CSV
355 355
356
-![CSV Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csv.gif)
356
+![CSV Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csvDesigner.gif)
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
+![Excel Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/excelDesigner.gif)
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
+![Doc Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/wordDesigner.gif)
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