> For the complete documentation index, see [llms.txt](https://aptitude.gitbook.io/zaubercms/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aptitude.gitbook.io/zaubercms/creating-a-website/current-content-properties/text-editor-radzen.md).

# Text Editor (Radzen)

Value Type Saved: String

There are now two rich text editors in ZauberCMS, TinyMCE and [Radzen Rich Text editor](https://blazor.radzen.com/html-editor?theme=material\&wcag=false). The Radzen editor is the most simple and has no configuration settings and no need for an API key

<figure><img src="https://417697475-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVr2cbdfxDGZK1u2Fd59w%2Fuploads%2FJ7HKNIWHAWHuVwVkiw4o%2Frte.png?alt=media&amp;token=db4b230a-923f-454a-a677-cf73f71f16a7" alt=""><figcaption><p>Radzen RTE</p></figcaption></figure>

#### Example of getting value on page

```csharp
@((MarkupString)(Content!.GetValue<string>("PropertyAliasHere") ?? string.Empty))
```

We have to use the `(MarkupString)` on HTML content in Blazor
