# ColumnHeaderStyle

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Determines the styles of the column headers in a [ListView](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview) control.

{% tabs %}
{% tab title="C#" %}

```csharp
public enum ColumnHeaderStyle : Enum
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Enum ColumnHeaderStyle As [Enum]
```

{% endtab %}
{% endtabs %}

## Fields

| Name             | Description                                                                                   |
| ---------------- | --------------------------------------------------------------------------------------------- |
| **Clickable**    | The column headers can be clicked and can carry out an action, such as sorting, when clicked. |
| **NonClickable** | The column headers are not clickable.                                                         |
| **None**         | The column header is not visible when in details view.                                        |

## Used By

| Name                                                                                                 | Description                              |
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| [ListView.HeaderStyle](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#headerstyle) | Returns or sets the column header style. |
