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
530
How to embed an UltraTextEditor in an UltraWinEditor Column?
posted

How to embed an UltraTextEditor in an UltraWinEditor Column? I have tried this:

this.myGrid.DisplayLayout.Bands[ 0 ].Columns[ "DocumentComment" ].EditorControl = this.ultraTextEditor1;

I changed some properties to ultraTextEditor1 like backcolor, multiline, etc., but nothing apparent happens.  What I want is just a multiline texteditor for a column.  How can I do that?  Thanks.

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    You do not need an editor for this. The grid cells and columns already have properties to allow you to assign colors. You can just set CellMultiline on the column to true.


Children