Guides/Toolbar-Buttons.md
... ...
@@ -286,7 +286,7 @@ Buttons and tabs in the Report Designer are controlled from within the core prod
286 286
287 287
##Buttons
288 288
289
-###Report List Button
289
+###Report List
290 290
291 291
![Report List Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/reportlist.png)
292 292
... ...
@@ -296,5 +296,63 @@ The report list button is used to jump right into the report list. To disable th
296 296
AdHocSettings.ReportList = "";
297 297
```
298 298
299
-###
299
+###New
300
+
301
+![New Report Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/new.png)
302
+
303
+The New Report button begins designing a report from the beginning. To disable the New Report button in the designer, you need to set the ShowNewButton property to false.
304
+
305
+```csharp
306
+AdHocSettings.ShowNewButtons = false;
307
+```
308
+
309
+###Save
310
+
311
+![Save Report Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/savedesigner.png)
312
+
313
+The Save Report button saves the report you are currently designing. To disable it, you'll have to set the ShowSaveControls property to false. This will hide both Save and Save As.
314
+
315
+```csharp
316
+AdHocSettings.ShowSaveControls = false;
317
+```
318
+
319
+###Save As
320
+
321
+![Save Report As Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/saveAsDesigner.png)
322
+
323
+The Save Report As button allows the user to save the report they'll currently working on with a specified name. To disable it, set either ShowSaveAsToolbarButton or ShowSaveControls properties to false. The latter will disable both Save and Save As buttons.
324
+
325
+```csharp
326
+AdHocSettings.ShowSaveAsToolbarButton = false;
327
+```
328
+
329
+###PDF Print
330
+
331
+![PDF Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/pdfDesigner.png)
332
+
333
+The PDF Print button will export a PDF version of the report being designed. To disable it, set ShowPDFButton to false.
334
+
335
+```csharp
336
+AdHocSettings.ShowPDFButton = false;
337
+```
338
+###HTML Print
339
+
340
+![HTML Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/htmlPrint.png)
341
+
342
+The HTML Print button allows a user to print the current report being designed.
343
+
344
+###Show SQL
345
+
346
+![Show SQL Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/sql.gif)
347
+
348
+The SQL button shows the generated SQL for the report being designed. To disable it, set ShowSqlOutputIcon to false.
349
+
350
+```csharp
351
+AdHocSettings.ShowSqlOutputIcon = false;
352
+```
353
+
354
+###CSV
355
+
356
+![CSV Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csv.gif)
357
+
300 358
##Tabs
... ...
\ No newline at end of file