CrystalReportViewer.Search 이벤트
이 이벤트는 보고서의 텍스트를 검색할 때 발생합니다.
네임스페이스 CrystalDecisions.Windows.Forms 어셈블리 CrystalDecisions.Windows.Forms (CrystalDecisions.Windows.Forms.dll)
구문
Public Event Search As CrystalDecisions.Windows.Forms.SearchEventHandler
public event CrystalDecisions.Windows.Forms.SearchEventHandler Search
이벤트 데이터
이벤트 처리기는 이 이벤트와 관련된 데이터가 포함된 SearchEventArgs 형식의 인수를 받습니다. 다음 SearchEventArgs 속성에서는 이 이벤트와 관련된 정보를 제공합니다.
속성 | 설명 |
---|---|
Direction | 검색할 방향을 가져오거나 설정합니다. |
Handled | 이벤트가 처리되었는지 여부를 가져오거나 설정합니다. 기본 동작이 발생하지 않도록 하려면 true로 설정합니다. |
PageNumberToBeginSearch | 검색을 시작할 페이지 번호를 가져오거나 설정합니다. |
TextToSearch | 보고서에서 검색할 텍스트를 가져오거나 설정합니다. |
설명
이 이벤트는 보고서의 텍스트를 검색할 때 발생합니다.
예제
이 예에서는 검색한 텍스트를 표시하도록 레이블을 설정하는 방법을 보여 줍니다.
Private Sub CrystalReportViewer1_Search(ByVal source As Object, _
ByVal e As CrystalDecisions.Windows.Forms.SearchEventArgs) Handles _
CrystalReportViewer1.Search
Label1.Text = e.TextToSearch
End Sub
void crystalReportViewer1_Search (Object* sender, CrystalDecisions::Windows::Forms::SearchEventArgs * e)
{
Label1->Text = e->TextToSearch;
};
private void crystalReportViewer1_Search_1(object source, CrystalDecisions.Windows.Forms.SearchEventArgs e)
{
Label1.Text = e.TextToSearch;
}
버전 정보
Crystal Reports Basic for Visual Studio 2008
Crystal Reports for Visual Studio .NET 2002 에서부터 지원됨
참고 항목
참조
CrystalReportViewer 클래스
CrystalReportViewer 멤버
CrystalDecisions.Windows.Forms 네임스페이스