# TabOrderManagerDirection

Namespace: **Wisej.Web**

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

Specifies the type of tab order strategy to apply to the container.

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

```csharp
public enum TabOrderManagerDirection : Enum
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Fields

| Name            | Description                                                                                                                                                 |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **AcrossFirst** | The [TabIndex](https://docs.wisej.com/api/general/control#tabindex) value for all child controls is updated to go across and then down.                     |
| **Default**     | Preserves the [TabIndex](https://docs.wisej.com/api/general/control#tabindex) value specified by the application.                                           |
| **DownFirst**   | The [TabIndex](https://docs.wisej.com/api/general/control#tabindex) value for all child controls is updated to go down and then across.                     |
| **Inherit**     | Inherits the [TabOrderManagerDirection](https://docs.wisej.com/api/wisej.web/enumerations/wisej.web.tabordermanagerdirection) set for the parent container. |

## Used By

| Name                                                                                                                | Description                                                                                                                                                               |
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [TabOrderManager.GetTabOrder](https://docs.wisej.com/api/extenders/wisej.web.tabordermanager#gettaborder-container) | Returns or sets the [TabOrderManagerDirection](https://docs.wisej.com/api/wisej.web/enumerations/wisej.web.tabordermanagerdirection) assigned to the specified container. |
