This is an archived forum post. The information may be outdated. Contact us if you have any questions.

Match online conversion with API

ei02028 wrote on 2015-04-17:
Hi guys,

I'm having trouble to match some options that I see on the online conversion but I don't see it on the C# API:

- One Long Page
- Page Orientation

Can you help me on this?

Thanks
support wrote on 2015-04-20:
One Long Page
client.setPageHeight("-1");



A4 Portrait
client.setPageWidth("210mm");
client.setPageHeight("298mm");


A4 Landscape
client.setPageWidth("298mm");
client.setPageHeight("210mm");
ei02028 wrote on 2015-04-20:
Thanks :)