cf5dd7dbf396edd8feb3f7ec8fca17276a5093d8
Guides/Toolbar-Buttons.md
| ... | ... | @@ -433,4 +433,25 @@ The Hide Help button toggles the side help panel.TO disable it, set ShowHelpButt |
| 433 | 433 | AdHocSettings.ShowHelpButton = false; |
| 434 | 434 | ``` |
| 435 | 435 | |
| 436 | -##Tabs |
|
| ... | ... | \ No newline at end of file |
| 0 | +##Tabs |
|
| 1 | + |
|
| 2 | +###Data Sources |
|
| 3 | + |
|
| 4 | + |
|
| 5 | + |
|
| 6 | +The Data Sources tabs allow report designers to add/remove data sources for a report. To disable it, set ShowDataSourcesTab to false. |
|
| 7 | + |
|
| 8 | +```csharp |
|
| 9 | +AdHocSettings.ShowDataSourcesTab = false; |
|
| 10 | +``` |
|
| 11 | + |
|
| 12 | +###Fields |
|
| 13 | + |
|
| 14 | + |
|
| 15 | + |
|
| 16 | +The fields tab allows the user to add or modify the fields reported on in a report, the functions used on them, the descriptions, and the formatting of the field through the report designer. To disable it, set ShowFieldsTab to false. |
|
| 17 | + |
|
| 18 | +```csharp |
|
| 19 | +AdHocSettings.ShowFieldsTab = false; |
|
| 20 | +``` |
|
| 21 | + |