GrapeCity.ActiveReports.Document.v9 アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : Find メソッド |
オーバーロード | 解説 |
---|---|
Find(String,Int32) | ドキュメントページから指定した文字列を検索します。 |
Find(String,FindOptions,Int32,Single) | SearchTexを説明します。 |
見つかった場合は、文字列の位置をcurrentIndexで返します。見つかった後に検索を続行する場合は、返されたcurrentIndexを指定して、このメソッドを再び呼び出します。
private void btnFind_Click(object sender, System.EventArgs e) { int i = 0; if (viewer1.Document.Find("Coyote", ref i) == true) { MessageBox.Show ("This document contains the word Coyote."); viewer1.Document.ClearFindTextSelection(); } }
Private Sub btnFind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFind.Click If Viewer1.Document.Find("Coyote", 0) Then MsgBox("This document contains the word Coyote.") Viewer1.Document.ClearFindTextSelection() End If End Sub