次のコード行の reportobjectName とは何か、またそれを Crystal レポートの RPT ファイルから取得する方法を教えてもらえますか?
ReportObject reportObject = Report.ReportDefinition.ReportObjects[reportObjectName];
前もって感謝します!!!!
次のコード行の reportobjectName とは何か、またそれを Crystal レポートの RPT ファイルから取得する方法を教えてもらえますか?
ReportObject reportObject = Report.ReportDefinition.ReportObjects[reportObjectName];
前もって感謝します!!!!
それがレポートの実際の名前です。MSDN の例を次に示します。
private ReportObject GetReportObject(string reportObjectName)
{
ReportObject reportObject;
reportObject =
Report.ReportDefinition.ReportObjects[reportObjectName];
return reportObject;
}
GetReportObject("CrystalReports.rpt");
レポートの詳細を定義し、ReportObjects を使用してそれを抽出する別の例を次に示します。
Crystal Reports .NET SDK を使用して Crystal Report で ReportObjects を見つける方法は?