# Hiding Tab Strip

## Content



**FlexSheet for WPF** provides the ability to hide the tab strip containing multiple sheet tabs using [ShowSingleTab](/componentone/api/wpf/online-flexsheet/dotnet-framework-api/C1.WPF.FlexSheet.4.6.2/C1.WPF.FlexGrid.C1FlexSheet.ShowSingleTab.html) property of the [C1FlexSheet](/componentone/api/wpf/online-flexsheet/dotnet-framework-api/C1.WPF.FlexSheet.4.6.2/C1.WPF.FlexGrid.C1FlexSheet.html) control.

### In Design View

1.  Select the **C1FlexSheet** control. Ensure that only one sheet is added to the control.
2.  Navigate to the **Properties** window and locate the [ShowSingleTab](/componentone/api/wpf/online-flexsheet/dotnet-framework-api/C1.WPF.FlexSheet.4.6.2/C1.WPF.FlexGrid.C1FlexSheet.ShowSingleTab.html) property in Miscellaneous drop-down section
3.  Uncheck the **ShowSingleTab** property CheckBox as shown in the image below:
    
    ![Uncheck ShowSingleTab property](https://cdn.mescius.io/document-site-files/images/b3208bf5-7808-4aa7-9bcc-2bc34f627220/images/cellcustomization/show-single-tab.png)
    

### In XAML

You can hide the tab strip appearing in the FlexSheet control by setting the **ShowSingleTab** property to **False**. Following code illustrates the use of **ShowSingleTab** property:

```xml
<c1:C1FlexSheet x:Name="flexsheet1" BorderBrush="Gray" BorderThickness="1" 
                Grid.Row="1" Width="1000"  HorizontalAlignment="Left" ShowSingleTab="False" EditOptions="Rename" />
```

### In Code

You can also set the **ShowSingleTab** property in Code view using the following code:

**vbnet**

```vbnet
flexsheet1.ShowSingleTab = False
```

**csharp**

```csharp
flexsheet1.ShowSingleTab = false;
```