ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupRichTextBox.Find C# (CSharp) Method

Find() public method

Searches the text of a RichTextBox control for the first instance of a character from a list of characters.
public Find ( char characterSet ) : int
characterSet char The array of characters to search for.
return int
        public int Find(char[] characterSet)
        {
            return _richTextBox.Find(characterSet);
        }

Same methods

KryptonRibbonGroupRichTextBox::Find ( char characterSet, int start ) : int
KryptonRibbonGroupRichTextBox::Find ( char characterSet, int start, int end ) : int
KryptonRibbonGroupRichTextBox::Find ( string str ) : int
KryptonRibbonGroupRichTextBox::Find ( string str, RichTextBoxFinds options ) : int
KryptonRibbonGroupRichTextBox::Find ( string str, int start, RichTextBoxFinds options ) : int
KryptonRibbonGroupRichTextBox::Find ( string str, int start, int end, RichTextBoxFinds options ) : int