New to Telerik UI for WinForms? Download free 30-day trial

Word Wrap

As of R1 2023, the RadSyntaxEditor control supports word wrapping which enables users to view all text for a line that normally would have gone outside the viewport horizontally.

The functionality can be enabled by setting the IsWordWrapEnabled property to True.

Example 1: Setting IsWordWrapEnabled property

this.radSyntaxEditor1.IsWordWrapEnabled = true;

Me.RadSyntaxEditor1.IsWordWrapEnabled = True

Figure 1: RadSyntaxEditor with Word Wrapping

WinForms RadSyntaxEditor Word Wrap

In this article