Hi,
I'm exporting PDF through Telerik Reporting. If I have no data to display (data record count is equal to zero), then I'm doing this:
But this only displays blank pages; not skipping those pages.
How can I skip the blank pages?
Thanks
I'm exporting PDF through Telerik Reporting. If I have no data to display (data record count is equal to zero), then I'm doing this:
this
.chart1.Visible =
false
;
this
.chart1.Height = Unit.Zero;
this
.Report.Visible =
false
;
this
.Report.Width = Unit.Zero;
this
.Report.Dispose();
But this only displays blank pages; not skipping those pages.
How can I skip the blank pages?
Thanks