# Header

DashoboardLayout for MVC allows you to display a caption for tiles headers. Learn more about child headers in MVC documentation.

## Content



DashboardLayout allows you to display a caption for each tile with the help of **HeaderText** method of the **TileBuilder** class. This method sets caption for the tile. The header consists of caption, a maximize/restore icon and tool-icon.

![The DashboardLayout header with caption, a maximize/restore icon and tool-icon](https://cdn.mescius.io/document-site-files/images/2b3ac322-100e-4637-958d-fb40dcda3f44/images/headertext.png)

The following code snippet shows how to set header text.

```razor
.Children(hgcb => hgcb.AddTile().HeaderText("Products Stock"))
```