description: "Learn how to work with the data-driven inline fields supported by the Telerik Reporting HtmlTextBox report item and edit them in place or througha design-timeeditor."
The in-place editor for theHtmlTextBox report itemallows you to quickly enter text directly into the designer instead of looking for a property in the **Property** grid.
The design-time editor is available in the Telerik Reporting Visual Studio and Standalone Report Designers and supports the following modes of operation:
* Interactive (__Design view__)—Allows you to select a portion of the text and make it bold, change its font, size, color, and so on by using the appropriate controls such as combo-boxes and buttons (WYSIWYG editor).
Internally, the Report Designer generates a valid HTML source and stores it in the `Value` property of the item. Adding embedded expressions is possible, but the entire HTML value cannot be an expression. You can switch to the __HTML view__ anytime if needed.
Pressing the `Enter` keyinserts a new paragraph or a new list item depending on the current context. Note that it does not insert a `<br />` (new line) element. To insert a new line, use the button on the toolbar.
* Expression (__Html view__)—Enables the user to enter raw HTML tags and text into the source editor. The value can be an expression or text, which containsembedded expressions. The user can switch to the __Design view__ anytime unless the value is an expression.
The `MultiLine` and `TextWrap` concepts are always true for the HtmlTextBox. You can nest the subscript and superscript tags, for example `<sub>subscript1<sub>subscript2</sub></sub>`, which will result in gradually smaller font sizes and offsets. However, the corresponding toolbar buttons only toggle the subscript or superscript feature and if you need nested tags, you need to manually add the appropriate code by using the __Html view__ of the editor.