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

RichTextBoxコントロール内のテキストを検索します。
オーバーロード一覧
オーバーロード解説
Find(Char[])RichTextBoxコントロールのテキスト内で、文字リストに含まれる文字のうち最初に見つかる文字を検索します。  
Find(String)RichTextBoxコントロール内のテキストで文字列を検索します。  
Find(String,Int32)RichTextBoxコントロール内のテキストで、検索開始位置を指定して文字列を検索します。  
Find(String,Int32,FindOptions)特定の検索オプションを適用し、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 メンバ

 

 


©2003-2017 GrapeCity inc. All rights reserved.