# View

Namespace: **Wisej.Web**

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

Specifies how list items are displayed in a [ListView](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview) control.

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

```csharp
public enum View : Enum
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Fields

| Name          | Description                                                                                                                                                                                                                                                                                                                                            |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **Details**   | Each item appears on a separate line with further information about each item arranged in columns. The left-most column contains a small icon and label, and subsequent columns contain sub items as specified by the application. A column displays a header which can display a caption for the column. The user can resize each column at run time. |
| **LargeIcon** | Each item appears as a full-sized icon with a label below it.                                                                                                                                                                                                                                                                                          |
| **SmallIcon** | Each item appears as a small icon with a label to its right.                                                                                                                                                                                                                                                                                           |
| **Tile**      | Each item appears as a full-sized icon with the item label and sub item information below the label. Items wrap to a new line from left to right.                                                                                                                                                                                                      |

## Used By

| Name                                                                                          | Description                                             |
| --------------------------------------------------------------------------------------------- | ------------------------------------------------------- |
| [ListViewComboBox.View](https://docs.wisej.com/api/wisej.web/wisej.web.listviewcombobox#view) | Returns or sets how items are displayed in the control. |
| [ListView.View](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#view)        | Returns or sets how items are displayed in the control. |
