# TableLayoutPanel

The `TableLayoutPanel` control arranges its contents in a grid. Because the layout is performed both at design time and run time, it can change dynamically as the application environment changes. This gives the controls in the panel the ability to proportionally resize, so it can respond to changes such as the parent control resizing or text length changing due to localization.

Any Wisej.NET control can be a child of the `TableLayoutPanel` control, including other instances of `TableLayoutPanel`. This allows you to construct sophisticated layouts that adapt to changes at runtime.

The `TableLayoutPanel` control can expand to accommodate new controls when they are added, depending on the value of the `RowCount`, `ColumnCount`, and `GrowStyle` properties. Setting either the `RowCount` or `ColumnCount` property to a value of 0 specifies that the `TableLayoutPanel` will be unbound in the corresponding direction.

You can also control the direction of expansion (horizontal or vertical) after the `TableLayoutPanel` control is full of child controls. By default, the `TableLayoutPanel` control expands downward by adding rows.

{% hint style="info" %}
For a full list of properties, methods and events see the [API documentation.](http://docs.wisej.com/api)
{% endhint %}

## Features

### AutoSize

When enabled, the `TableLayoutPanel` control is able to resize itself to fit its contents according to the `AutoSizeMode` property specified.

{% content-ref url="../../concepts/layouts" %}
[layouts](https://docs.wisej.com/docs/concepts/layouts)
{% endcontent-ref %}

## Advanced

### JavaScript Widget

| Item                | Description                                                                                                                                                                                                                                                                             |
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Class name          | "wisej.web.Panel"                                                                                                                                                                                                                                                                       |
| Theme appearance    | "panel", see [Themes](https://docs.wisej.com/theme-builder/theme-elements/elements).                                                                                                                                                                                                    |
| Child components    | "pane" is the container. "captionbar" is the header. "title" is the title of the panel. "icon" is the icon of the panel, if applicable. "close-button" is the close button of the panel, if applicable. See [JavaScript](https://docs.wisej.com/docs/concepts/javascript-object-model). |
| Toolcontainer state | "panel", see [Embedded Tools](https://docs.wisej.com/docs/controls/general/embedded-tools).                                                                                                                                                                                             |
| Source code         | [https://github.com/iceteagroup/wisej-js](https://github.com/iceteagroup/wisej-js/blob/master/wisej.web.TextBox.js)                                                                                                                                                                     |
