GrapeCity ActiveReports for .NET 14.0J
Find メソッド (RichTextBox)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > RichTextBox クラス : Find メソッド
RichTextBoxコントロール内のテキストを検索します。
オーバーロード一覧
オーバーロード解説
RichTextBoxコントロールのテキスト内で、文字リストに含まれる文字のうち最初に見つかる文字を検索します。  
RichTextBoxコントロール内のテキストで文字列を検索します。  
RichTextBoxコントロール内のテキストで、検索開始位置を指定して文字列を検索します。  
特定の検索オプションを適用し、RichTextBoxコントロール内のテキストで、検索開始位置を指定して文字列を検索します。  
使用例
Private void Detail_Format(object sender, System.EventArgs eArgs)
{
    If (this.RichTextBox1.Find("past due")!= -1)
    {
        this.txtPayNow.Visible=True;
    }
    Else
    {
        this.txtPayNow.Visible=False;
    }
}
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    If Not Me.RichTextBox1.Find("past due") = -1 Then
        Me.txtPayNow.Visible = True
    Else
        Me.txtPayNow.Visible = False
    End If
End Sub
参照

RichTextBox クラス
RichTextBox メンバ