CrystalReportViewer.ViewTimeSelectionFormula 속성
보고서에서 현재 사용되는 데이터를 필터링하기 위해 레코드 선택 수식을 가져오거나 설정합니다.
네임스페이스 CrystalDecisions.Windows.Forms 어셈블리 CrystalDecisions.Windows.Forms (CrystalDecisions.Windows.Forms.dll)
구문
Public NotInheritable Property ViewTimeSelectionFormula As String
public sealed string ViewTimeSelectionFormula {get; set;}
예제
이 예에서는 보고서에 대한 ViewTimeSelectionFormula
속성을 설정하는 방법을 보여 줍니다.
Private Sub SetViewTimeSelectionFormula(ByVal mySalesAmount As String, ByVal myCustomerName As String)
Dim mySelectionFormula As String = "{Customer.Last Year's Sales} > " & mySalesAmount _
& " AND Mid({Customer.Customer Name}, 1) > """ & myCustomerName & """"
CrystalReportViewer.ViewTimeSelectionFormula = mySelectionFormula
End Sub
private void SetViewTimeSelectionFormula(String salesAmount, String customerName)
{
String selectionFormula = "{Customer.Last Year's Sales} > " + salesAmount
+ " AND Mid({Customer.Customer Name}, 1) > \"" + customerName + "\"";
crystalReportViewer.ViewTimeSelectionFormula = selectionFormula;
}
버전 정보
Crystal Reports Basic for Visual Studio 2008
Crystal Reports .NET 10 에서부터 지원됨
참고 항목
참조
CrystalReportViewer 클래스
CrystalReportViewer 멤버
CrystalDecisions.Windows.Forms 네임스페이스