Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2387
Making text wrap on in a cell
posted

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

  • 17475
    Offline posted

    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.

  • 17475
    Offline posted

    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.