> For the complete documentation index, see [llms.txt](https://docs.wisej.com/migration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wisej.com/migration/winforms-to-wisej-1/optimizations-after-migration/allowhtml.md).

# AllowHtml

In WinForms applications there is no real way to format labels or have a mixed format inside them. Wisej.NET offers a powerful yet easy way to format content. This is done by setting [AllowHtml](https://docs.wisej.com/docs/controls/content/label#allowhtml) property to true. \
It is available for almost any control and supports not only the labels but can also be used for the content of DataGridView columns, ComboBox entries etc.

{% hint style="info" %}
Please note that AllowHtml is false for any Control by default. This is to avoid false parsing of HTML syntax characters like < or >. So if you want to use HTML in your Control you have to explicitly set AllowHtml to true.
{% endhint %}

<br>
