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

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : Find メソッド
ドキュメントページから指定した文字列を検索します。
オーバーロード一覧
オーバーロード解説
ドキュメントページから指定した文字列を検索します。  
ドキュメント内のテキストを指定された場所から開始し、指定のオプションを設定して、指定された文字列から検索操作を行うことができます。  
解説

見つかった場合は、文字列の位置を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
参照

SectionDocument クラス
SectionDocument メンバ