다음을 통해 공유


RichTextBoxFinds 열거형

RichTextBox 컨트롤에서 텍스트 검색이 수행되는 방식을 지정합니다.

이 열거형에는 멤버 값를 비트로 조합할 수 있는 FlagsAttribute 특성이 있습니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
<FlagsAttribute> _
Public Enumeration RichTextBoxFinds
‘사용 방법
Dim instance As RichTextBoxFinds
[FlagsAttribute] 
public enum RichTextBoxFinds
[FlagsAttribute] 
public enum class RichTextBoxFinds
/** @attribute FlagsAttribute() */ 
public enum RichTextBoxFinds
FlagsAttribute 
public enum RichTextBoxFinds

멤버

  멤버 이름 설명
MatchCase 대/소문자가 일치하는 검색 텍스트만 찾습니다. 
NoHighlight 검색 텍스트를 찾은 경우 강조 표시되면 안됩니다. 
None 검색에서 찾은 결과가 단어 단위로 검색되었는지 여부에 관계 없이 모든 결과를 찾습니다. 
Reverse 컨트롤의 문서 끝에서 검색을 시작하여 문서의 시작까지 검색합니다. 
WholeWord 단어 단위로 일치하는 검색 텍스트만 찾습니다. 

설명

응용 프로그램에서는 RichTextBox 컨트롤의 Find 메서드를 호출하여 RichTextBox 컨트롤에서 텍스트를 찾습니다. 이 열거형을 사용하면 Find 메서드가 호출될 때 검색이 수행되는 방식을 지정할 수 있습니다. Find 메서드를 호출할 때 이 열거형에 있는 값을 하나 이상 조합하여 둘 이상의 검색 옵션을 지정할 수 있습니다.

예제

다음 예제에서는 메서드의 텍스트 매개 변수에 전달된 검색 문자열의 첫 인스턴스를 RichTextBox의 전체 내용에서 검색합니다. 검색 시작 위치는 이 메서드의 시작 매개 변수로 지정됩니다. 검색 문자열이 RichTextBox에 있으면 이 메서드는 찾은 텍스트에 있는 첫 번째 문자의 인덱스 위치를 반환하고 해당 텍스트를 강조 표시하며, 그렇지 않으면 값 -1을 반환합니다. 또한 이 예제에서는 지정된 검색 문자열과 대/소문자가 일치하는 텍스트를 찾도록 검색 옵션을 지정합니다. 이 예제에서는 richTextBox1이라는 RichTextBox가 들어 있는 Form 클래스에 이 메서드가 포함되어 있다고 가정합니다. 검색 텍스트가 처음 나오는 경우를 찾은 다음 텍스트의 다른 경우를 찾기 위해 "다음 찾기" 유형의 작업을 수행할 때 이 예제를 사용할 수 있습니다.

Public Function FindMyText(text As String, start As Integer) As Integer
    ' Initialize the return value to false by default.
    Dim returnValue As Integer = - 1
    
    ' Ensure that a search string has been specified and a valid start point.
    If text.Length > 0 And start >= 0 Then
        ' Obtain the location of the search string in richTextBox1.
        Dim indexToText As Integer = richTextBox1.Find(text, start, _
            RichTextBoxFinds.MatchCase)
        ' Determine whether the text was found in richTextBox1.
        If indexToText >= 0 Then
            returnValue = indexToText
        End If
    End If
    
    Return returnValue
End Function
public int FindMyText(string text, int start)
{
   // Initialize the return value to false by default.
   int returnValue = -1;

   // Ensure that a search string has been specified and a valid start point.
   if (text.Length > 0 && start >= 0) 
   {
      // Obtain the location of the search string in richTextBox1.
      int indexToText = richTextBox1.Find(text, start, RichTextBoxFinds.MatchCase);
      // Determine whether the text was found in richTextBox1.
      if(indexToText >= 0)
      {
         returnValue = indexToText;
      }
   }

   return returnValue;
}
public:
   int FindMyText( String^ text, int start )
   {
      // Initialize the return value to false by default.
      int returnValue = -1;
      
      // Ensure that a search string has been specified and a valid start point.
      if ( text->Length > 0 && start >= 0 )
      {
         // Obtain the location of the search string in richTextBox1.
         int indexToText = richTextBox1->Find( text, start, RichTextBoxFinds::MatchCase );
         // Determine whether the text was found in richTextBox1.
         if ( indexToText >= 0 )
         {
            returnValue = indexToText;
         }
      }

      return returnValue;
   }
public int FindMyText(String text, int start)
{
    // Initialize the return value to false by default.
    int returnValue = -1;

    // Ensure that a search string has been specified
    // and a valid start point.
    if (text.get_Length() > 0 && start >= 0) {
        // Obtain the location of the search string in richTextBox1.
        int indexToText = 
            richTextBox1.Find(text, start, RichTextBoxFinds.MatchCase);

        // Determine whether the text was found in richTextBox1.
        if (indexToText >= 0) {
            returnValue = indexToText;
        }
    }
    return returnValue;
} //FindMyText

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

System.Windows.Forms 네임스페이스
RichTextBox 클래스
RichTextBox.Find