Guides/Toolbar-Buttons.md
... ...
@@ -455,3 +455,83 @@ The fields tab allows the user to add or modify the fields reported on in a repo
455 455
AdHocSettings.ShowFieldsTab = false;
456 456
```
457 457
458
+###Summary
459
+
460
+![Summary Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/summary.png)
461
+
462
+The summary tab allows the user to add or modify a summary section in a report through the report designer. To disable it, set ShowSummaryTab to false.
463
+
464
+```csharp
465
+AdHocSettings.ShowSummaryTab = false;
466
+```
467
+
468
+###Chart
469
+
470
+![Chart Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/chart.png)
471
+![Chart2 Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/chart2.png)
472
+
473
+The chart tab allows the user to add or modify trend, pie, plot, and bar charts in a report through the report designer. To disable it, set ShowChartTab to false.
474
+
475
+```csharp
476
+AdHocSettings.ShowChartTab = false;
477
+```
478
+
479
+###Gauge
480
+
481
+![Gauge Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/gauge.png)
482
+
483
+The gauges tab allows the user to add or modify gauges used in a report through the report designer. To disable it, set ShowGaugeTab to false.
484
+
485
+```csharp
486
+AdHocSettings.ShowGaugeTab = false;
487
+```
488
+
489
+###Map
490
+
491
+![Map Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/map.png)
492
+
493
+The map tab allows the user to add or modify a map to be used in a report through the designer. To disable it, set ShowMapTab to false.
494
+
495
+```csharp
496
+AdHocSettings.ShowMapTab = false;
497
+```
498
+
499
+###Misc
500
+
501
+![Misc Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/misc.png)
502
+
503
+The misc tab allows the user to set the title, description, header, footer, report scheduler settings (if enabled), and report access permissions for a report through the report designer. To disable it, set ShowMiscTab to false.
504
+
505
+```csharp
506
+AdHocSettings.ShowMiscTab = false;
507
+```
508
+
509
+###Style
510
+
511
+![Style Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/style.png)
512
+
513
+The style tab allows the user to modify the report colors, print options, visual group advanced options, report order, set report viewer items per page, and modify field value / report layout options through the report designer. To disable it, set ShowStyleTab to false.
514
+
515
+```csharp
516
+AdHocSettings.ShowStyleTab = false;
517
+```
518
+
519
+###Filters
520
+
521
+![Filters Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/filters.png)
522
+
523
+The filters tab allows the user to add or modify filters used on report data through the report designer. To disable it, set ShowFiltersTab to false.
524
+
525
+```csharp
526
+AdHocSettings.ShowFiltersTab = false;
527
+```
528
+
529
+###Preview
530
+
531
+![Preview Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/preview.png)
532
+
533
+The preview tab allows the user to view the current report so they can quickly see any modifications and the report layout through the report designer. To disable it, set ShowPreviewTab to false.
534
+
535
+```csharp
536
+AdHocSettings.ShowPreviewTab = false;
537
+```
... ...
\ No newline at end of file