devxlogo

Copying the selected text of a RichTextBox text into the Clipboard

' Copy the RichTextBox's selected text into the Clipboard' Example: CopyFromRichTextBox (richTextBox1)Public Sub CopyFromRichTextBox(ByVal rtb As RichTextBox, _    Optional ByVal availableAfterEnd As Boolean = False)    Dim data As New DataObject()    ' get the selected RTF text if there is a selection,    ' or the entire text is no text is selected    Dim rtfText, plainText As String    If rtb.SelectionLength > 0 Then        rtfText = rtb.SelectedRtf        plainText = rtb.SelectedText    Else        rtfText = rtb.Rtf        plainText = rtb.Text    End If    ' do the copy only if there is something to be copied    If rtfText.Length > 0 Then data.SetData(DataFormats.Rtf, rtfText)    If plainText.Length > 0 Then data.SetData(DataFormats.Text, plainText)    ' finally copy into the clipboard    Clipboard.SetDataObject(data, availableAfterEnd)End Sub

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.