ActiveReports 13
RichTextBox.FindOptions Enumeration

GrapeCity.ActiveReports Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace : RichTextBox.FindOptions Enumeration

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
'Declaration
 
Public Enum RichTextBox.FindOptions 
   Inherits System.Enum
public enum RichTextBox.FindOptions : System.Enum 
Members
MemberDescription
MatchCaseLocate only instances of the search text that have the exact casing.
NoneLocate all instances of the search text to determine whether the instances found in the search are whole words or not.
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
         GrapeCity.ActiveReports.SectionReportModel.RichTextBox.FindOptions

See Also

Reference

GrapeCity.ActiveReports.SectionReportModel Namespace
ActiveReports6~GrapeCity.ActiveReports.RichTextBox~Find(String,Int32,FindOptions)