Which one is faster?
Which provides better quality?
Let's say I have some document (take 1 page for simplicity) loaded into RVReportHelper1.
I call
Code: Select all
RVReportHelper1.Init(Canvas,w);
RVReportHelper1.FormatNextPage(h);
I guess DrawPreview is pretty much Ok for the latter, but is it good to use DrawPreview for printing instead of DrawPage? DrawPreview method seems more handy for me, because I can control scaling really easily.
Is there a reason why I should not use DrawPreview instead of DrawPage everywhere?
Thank you.