# TableLayoutPanelGrowStyle

Namespace: **Wisej.Web**

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

Specifies how a [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel) will gain additional rows or columns after its existing cells are full.

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

```csharp
public enum TableLayoutPanelGrowStyle : Enum
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Fields

| Name           | Description                                                                                                                                          |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| **AddColumns** | The [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel) gains additional columns after it is full.                  |
| **AddRows**    | The [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel) gains additional rows after it is full.                     |
| **FixedSize**  | The [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel) does not allow additional rows or columns after it is full. |

## Used By

| Name                                                                                                                                                             | Description                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [TableLayoutPanel.GrowStyle](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel/..#growstyle)                                                      | Returns or sets whether the [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel) control should expand to accommodate new cells when all existing cells are occupied. |
| [TableLayoutSettings.GrowStyle](https://docs.wisej.com/api/wisej.web/containers/wisej.web.tablelayoutsettings#growstyle)                                         | Returns or sets a value indicating how the table layout should expand to accommodate new cells when all existing cells are occupied.                                                                  |
| [TableLayoutPanelExtensions.GrowStyle](https://docs.wisej.com/api/wisej.web.markup/extensions/wisej.web.markup.tablelayoutpanelextensions#growstyle-panel-value) | Sets the grow style for the [TableLayoutPanel](https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel).                                                                                     |
