# Specifying Full Screen Modes

You can switch to full screen view on your Form. In Fullscreen mode, you can block unexpected user actions for the Title bar or Windows Taskbar.

## Content

You can switch to full screen view on your Form. In Fullscreen mode, you can block unexpected user actions for the Title bar or Windows Taskbar.

The following behaviors exist when setting the different values of the **FullScreenMode** enumeration:

* When the **C1Zoom.FullScreenMode** property is **FullScreen**, the Form switches to full screen.
* When the **C1Zoom.FullScreenMode** property **is FullScreenWithTaskbar**, the Form switches to full screen with the Windows Taskbar.
* When the **C1Zoom.FullScreenMode** property is **None**, the Form switches to normal view.

Use the following code to switch your form to full screen view:

[C#]

```csharp
c1Zoom1.FullScreenMode = C1.Win.TouchToolKit.FullScreenMode.FullScreen;
```

[Visual Basic]

```vbnet
C1Zoom1.FullScreenMode = C1.Win.TouchToolKit.FullScreenMode.FullScreen
```
>type=note
> **Note**: MDI Child Form does not support Fullscreen mode.