[]
        
(Showing Draft Content)

Clipboard Functions

The following code snippets demonstrate the code used for clipboard functions:

Copy

rtb.ClipboardCopy();
Paste
if(!rtb.IsReadOnly)
{
    rtb.ClipboardPaste();
}

Cut

if(rtb.IsReadOnly)
    rtb.ClipboardCopy();
else
{
    rtb.ClipboardCut();
}