TX Text Control Blog

Copying the complete content into the clipboard

Blogged by Björn Meyer on April 4, 2006 and tagged with samples, .net.

Sometimes, it is necessary to copy the complete content of TX Text Control .NET into the clipboard. If you do this by selecting everything and using the Copy() method, not every element will be copied into the clipboard. In this case, the Save() method can be used to save the content into a variable. Using this variable, a DataObject can be filled and passed to the Clipboard itself.

Dim data As New DataObject Dim RTF As String TextControl1.Save(RTF, TXTextControl.StringStreamType.RichTextFormat) data.SetData(DataFormats.Rtf, RTF) Clipboard.SetDataObject(data)
 
 
User Contributed Note

User Contributed Note by Thomas Sauder on February 19, 2009 at 1:57:50 PM CET

This seems not to work when the last "object" of the content is an image. As soon as I add a character after the image it works. Any idea on how to copy the complete content with an image at the end?