# DataGridViewTriState

Namespace: **Wisej.Web**

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

Defines values for specifying one of three possible states.

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

```csharp
public enum DataGridViewTriState : Enum
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Fields

| Name       | Description                    |
| ---------- | ------------------------------ |
| **False**  | The property's state is false. |
| **NotSet** | The property is not set.       |
| **True**   | The property's state is true.  |

## Used By

| Name                                                                                                                            | Description                                                                                                                                                                                                                                                 |
| ------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [DataGridViewColumn.Resizable](https://docs.wisej.com/api/wisej.web/lists-and-grids/wisej.web.datagridviewcolumn#resizable)     | Returns or sets whether the column is resizable.                                                                                                                                                                                                            |
| [DataGridViewColumn.Movable](https://docs.wisej.com/api/wisej.web/lists-and-grids/wisej.web.datagridviewcolumn#movable)         | Returns or sets whether the user can move the column.                                                                                                                                                                                                       |
| [DataGridViewBand.Resizable](https://docs.wisej.com/api/wisej.web/lists-and-grids/wisej.web.datagridviewband#resizable)         | Returns or sets whether the band can be resized in the user interface (UI).                                                                                                                                                                                 |
| [DataGridViewCellStyle.WrapMode](https://docs.wisej.com/api/wisej.web/lists-and-grids/wisej.web.datagridviewcellstyle#wrapmode) | Returns or sets whether textual content in a [DataGridViewCell](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/wisej.web.datagridviewcell) cell is wrapped to subsequent lines or truncated when it is too long to fit on a single line. |
| [DataGridViewRow.Resizable](https://docs.wisej.com/api/wisej.web/lists-and-grids/wisej.web.datagridviewrow#resizable)           | Returns or sets whether users can resize the row or indicating that the behavior is inherited from the [AllowUserToResizeRows](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/..#allowusertoresizerows) property.                        |
