# Hiding the Toolbar

## Content



If you choose to create a customized toolbar (for an example, see the [Customizing the Toolbar](/componentone/docs/wpf/online-reportviewer/reportviewerforwpfta/customizingthetoolba) topic), you may need to hide the default toolbar available in the [C1ReportViewer](/componentone/api/wpf/online-reportviewer/dotnet-framework-api/C1.WPF.ReportViewer.4.6.2/C1.WPF.ReportViewer.C1ReportViewer.html) control. You can hide the built-in toolbar using the [ToolbarVisibility](/componentone/api/wpf/online-reportviewer/dotnet-framework-api/C1.WPF.ReportViewer.4.6.2/C1.WPF.ReportViewer.C1ReportViewer.ToolbarVisibility.html) property. For example:

```xml
<c1:C1ReportViewer x:Name="C1ReportViewer1" ToolbarVisibility="Collapsed"/>
```

```vbnet
Me.C1ReportViewer.ToolbarVisibility = Visibility.Collapsed
```

```csharp
this.C1ReportViewer.ToolbarVisibility = Visibility.Collapsed;
```