GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > RichTextBox クラス > Find メソッド : Find(String,Int32) メソッド |
検索テキストが見つかったコントロール内の位置。
この Find メソッドは、str で指定されたテキストを検索し、コントロール内で最初に見つかった文字の位置を返します。プロパティが負の値を返す場合は、コントロールの内容の中で検索文字列が見つからなかったことを示します。
注意 パラメータに文字列を取る Find メソッドでは、RichTextBoxの複数の行に含まれるテキストを検索することはできません。このような検索を実行すると、-1が返されます。
private void Detail_Format(object sender, System.EventArgs eArgs) { if (this.RichTextBox1.Find("excellent", 15)!= -1) { this.txtAward.Visible=true; } else { this.txtAward.Visible=false; } }
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format If Not Me.RichTextBox1.Find("excellent", 15) = -1 Then Me.txtAward.Visible = True Else Me.txtAward.Visible = False End If End Sub