NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RichTextBox.Find (Char[])

Searches the text in a RichTextBox control for the giving characters.

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

Parameters

characterSet
Characters to search for

Return Value

an integer offset where the match was found or-1 if failed.

See Also

RichTextBox Class | RichTextBox Members | System.WinForms Namespace | RichTextBox.Find Overload List