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

ドキュメントページから指定した文字列を検索します。
オーバーロード一覧
オーバーロード解説
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
参照

関連項目

SectionDocument クラス
SectionDocument メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.