Wimark.Controls Class Library  

RichTextBox.Find Method

Searches the text in a RichTextBox control for a string.

Overload List

Searches the text of a RichTextBox control for the first instance of a character from a list of characters.

[Visual Basic] Overloads Public Function Find(Char ()) As Integer
[C#] public int Find(char[]);
[C++] public: int Find(__wchar_t*);

Searches the text of a RichTextBox control, at a specific starting point, for the first instance of a character from a list of characters.

[Visual Basic] Overloads Public Function Find(Char (), Integer) As Integer
[C#] public int Find(char[], int);
[C++] public: int Find(__wchar_t*, int);

Searches a range of text in a RichTextBox control for the first instance of a character from a list of characters.

[Visual Basic] Overloads Public Function Find(Char (), Integer, Integer) As Integer
[C#] public int Find(char[], int, int);
[C++] public: int Find(__wchar_t*, int, int);

Searches the text in a RichTextBox control for a string.

[Visual Basic] Overloads Public Function Find(String) As Integer
[C#] public int Find(string);
[C++] public: int Find(String*);

Searches the text in a RichTextBox control for a string within a range of text within the control and with specific options applied to the search.

[Visual Basic] Overloads Public Function Find(String, Integer, Integer, RichTextBoxFinds) As Integer
[C#] public int Find(string, int, int, RichTextBoxFinds);
[C++] public: int Find(String*, int, int, RichTextBoxFinds);

Searches the text in a RichTextBox control for a string at a specific location within the control and with specific options applied to the search.

[Visual Basic] Overloads Public Function Find(String, Integer, RichTextBoxFinds) As Integer
[C#] public int Find(string, int, RichTextBoxFinds);
[C++] public: int Find(String*, int, RichTextBoxFinds);

Searches the text in a RichTextBox control for a string with specific options applied to the search.

[Visual Basic] Overloads Public Function Find(String, RichTextBoxFinds) As Integer
[C#] public int Find(string, RichTextBoxFinds);
[C++] public: int Find(String*, RichTextBoxFinds);

See Also

RichTextBox Class | RichTextBox Members | Wimark.Controls Namespace