Export only one page per code
Posted: Thu Nov 12, 2009 2:16 pm
hi
use by this code
repo.ExportDocument(Stimulsoft.Report.StiExportFormat.RtfTable , @"c:\f1.rtf");
But export file apply by all page
Please help me
Thank you.
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
report.Render(false);
StiRtfExportSettings mySettings = new StiRtfExportSettings();
StiPagesRange pagesRange = new StiPagesRange("2-");
mySettings.PageRange = pagesRange;
report.ExportDocument(Stimulsoft.Report.StiExportFormat.RtfTable , @"c:\f1.rtf", mySettings);