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