Check out example codes for "copy text from a text box c#". It will help you in understanding the concepts better.
Code Example 1
if(textBox1.SelectionLength>0)
{
textBox1.Copy();
}
Learn ReactJs, React Native from akashmittal.com