Hi,
I am using LL 18 version.
I want to set the initial zoom factor when the report is shown in preview mode.
Is it possible?
Hi,
I am using LL 18 version.
I want to set the initial zoom factor when the report is shown in preview mode.
Is it possible?
Hi!
Im not sure but there are a lot of options for LL
Have you tried this one?
LL_OPTION_PRVZOOM_PERC
Hi
Thanks for your reply.
No. I didn’t try this option yet.
Can you please tell me from where I can get this option?
Or from where I can customize it?
Have a look at the programmers reference there you should find most of the available options
You can set them using LlSetOption.
Hope this helps.
Dear Khumbar,
thank you for your note.
If you use .NET you can set it like this:
ll.Core.LlSetOption(LlOption.Preview_Zoom_Percent, 150);
If not you have to set it like followed:
LlSetOption(hJob, LL_OPTION_PRVZOOM_PERC, 150);
or
LlSetOption(hJob, 25, 150);
Erdal Alacali
Technical support
combit GmbH
Thank you so much Erdal…
I will try this option.