Ticket Q279940
Visible to All Users

Add text from a text box to RichEdit Control

created 14 years ago

Hi
i need to add text from a text box to an richedit Control in the same format in which it contains already text.
or u can say the last word word style from richedit control.
Thanks

Comments (3)

    Hi Richard,
    Unless I am mistaken, you want to insert a formatted text into the XtraRichEdit. To accomplish this task, please use the SubDocument.InsertRtfText method. Here is some sample code:

    C#
    richEditControl1.Document.InsertRtfText(richEditControl1.Document.CaretPosition, richTextBox1.Rtf);

    Does it work for you?
    Thanks,
    Sergi

      Sorry but i have a simple textbox which does not have any formatted data. I want to add this text in the richeditcontrol which has some format so would like that this new text can be there with same format.
      For example i have a text in richeditcontrol with arial , 8 font size and in red color. so now i add word "Hello"
      then it must seem a part of that text with same format.
      waiting for reply.
      Thanks

        Hi Richard,
        Thank you for the clarification. When you insert a plain text into the XtraRichEdit, text format is set according to the current document position text format. So, you can use the SubDocument.InsertText method to accomplish your task. Here is some sample code:

        C#
        richEditControl1.Document.InsertText(richEditControl1.Document.CaretPosition, textBox1.Text);

        Please try this solution and let us know the results.
        Thanks,
        Sergi

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.