I have a Field which, from time to time, is too long. I would like to make the text in that Field wrap. How do I do that? I am using v11.1
Hello,
I am just checking if my last reply was helpful for you.
If you require any further assistance please do not hesitate to ask.
Hello scarleton,
I have been looking into your post and I can suggest you use a Style for the XamTextEditor. You can set its TextWrapping property to “Wrap” and the text in the cell will be displayed in multiple rows.
<Style TargetType="{x:Type igEditors:XamTextEditor}">
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
Please let me know if you have any other questions on the matter.