ActiveReports3 Request technical support
RichTextBox.FindOptions Enumeration
See Also  


Specifies how a text search is carried out in a RichTextBox control.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

Visual Basic (Declaration) 
Public Enum RichTextBox.FindOptions 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RichTextBox.FindOptions
C# 
public enum RichTextBox.FindOptions : Enum 

Members

MemberDescription
NoneLocate all instances of the search text to determine whether the instances found in the search are whole words or not.
MatchCaseLocate only instances of the search text that have the exact casing.
ReverseStarts the search at the end of the control's document and searches to the beginning of the document.
WholeWordLocate only instances of the search text that are whole words.

Remarks

An application locates text in the RichTextBox control by calling the Find method of the RichTextBox control. This enumeration enables you to specify how the search is performed when the Find method is called. You can combine one or more values from this enumeration to specify more than one search option when calling the Find method.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         DataDynamics.ActiveReports.RichTextBox.FindOptions

See Also