I didn't know it would be so difficult to play with Richtextbox control. I am trying to fetch Clipboard data and trying to set in a RichTextBox.
RichTextBox rtb = new RichTextBox();
rtb.Rtf = Clipboard.GetText(TextDataFormat.Rtf);
How to iterate over table collection or Indivisual tables ? Can we find table count from RichTextBox ?
My goal is to find if there are any table in the clipboard RTF data and if yes then check those for data in it.