過載有:public int Find(char[ ] characterSet)public int Find(char[ ] characterSet, int start)public int Find(char[ ] characterSet, int start, int end)public int Find(string str)public int Find(string str, System.Windows.Forms.RichTextBoxFinds options)public int Find(string str, int start, System.Windows.Forms.RichTextBoxFinds options)public int Find(string str, int start, int end, System.Windows.Forms.RichTextBoxFinds options)characterSet和str:指要在控制元件中定位的文字start:控制元件文字中開始搜尋的位置end:控制元件文字中結束搜尋的位置。此值必須等於 -1 或者大於或等於 start 引數options:System.Windows.Forms.RichTextBoxFinds 值的按位組合一般來講用Find(str, start, end)就行了,你使用後,如果options不為NoHighlight,就會自動在文字框中選中,然後使用richtextbox.copy即可複製
過載有:public int Find(char[ ] characterSet)public int Find(char[ ] characterSet, int start)public int Find(char[ ] characterSet, int start, int end)public int Find(string str)public int Find(string str, System.Windows.Forms.RichTextBoxFinds options)public int Find(string str, int start, System.Windows.Forms.RichTextBoxFinds options)public int Find(string str, int start, int end, System.Windows.Forms.RichTextBoxFinds options)characterSet和str:指要在控制元件中定位的文字start:控制元件文字中開始搜尋的位置end:控制元件文字中結束搜尋的位置。此值必須等於 -1 或者大於或等於 start 引數options:System.Windows.Forms.RichTextBoxFinds 值的按位組合一般來講用Find(str, start, end)就行了,你使用後,如果options不為NoHighlight,就會自動在文字框中選中,然後使用richtextbox.copy即可複製