PxPlus User Forum

Main Board => Discussions => Language => Topic started by: marcbr on November 11, 2025, 03:50:13 AM

Title: scale printout
Post by: marcbr on November 11, 2025, 03:50:13 AM
Hello everybody,
I want to scale a printout to 65%. The winprt_setup reap prop$ instruction doesn't show a property that allow this. Does anyone have an idea on how to achieve this? Thanks a lot!
Title: Re: scale printout
Post by: Devon Austen on November 11, 2025, 10:59:44 AM
There is a property called SCALE=

It is mentioned in the documentation here: https://manual.pvxplus.com?directives/winprt_setup.htm

So if you want to set the property you could do something like

winprt_setup read properties P$
P$+="; SCALE=65"
winprt_setup write properties P$

This will read the current properties and add SCALE=65 where the 65 is 65%.