Share this page 

Remove the rtf information from the rte contentTag(s): Powerscript


To transfer the rte control to mle control, try this :
String ls_temp
rte_1.SelectTextAll()
ls_temp = rte_1.SelectedText()
mle_1.Text = ls_temp
or use the clipboard
rte_1.SelectTextAll()
rte_1.Copy()
mle_1.Paste()