Focal Point
adjusting space between columns in pdf output

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1611057181

August 22, 2006, 12:06 PM
Bethany
adjusting space between columns in pdf output
I've tried to use the SET SPACES parameter but it doesn't seem to make any difference. I would like to minimize the space between columns in pdf output.


Server Environment: Win2K3 Server WebFOCUS 7.13 Apache Tomcat standalone application server
August 22, 2006, 12:15 PM
Nightowl
Here is the method we use (assuming four columns in the report):

ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,PAGESIZE='Letter',LEFTMARGIN=0.25,RIGHTMARGIN=0.25,TOPMARGIN=0.25,BOTTOMMARGIN=0.00,SQUEEZE=ON,ORIENTATION=PORTRAIT,$

TYPE=REPORT,FONT='ARIAL',SIZE=8,COLOR='BLACK',BACKCOLOR='NONE',STYLE=NORMAL,RIGHTGAP=0.00,LEFTGAP=0.00,$
TYPE=REPORT,COLUMN=P1,SQUEEZE=1.50,$
TYPE=REPORT,COLUMN=P2,SQUEEZE=5.00,$
TYPE=REPORT,COLUMN=P3,SQUEEZE=0.75,$
TYPE=REPORT,COLUMN=P4,SQUEEZE=0.75,$


Using: WF 7.1.5, XP Pro, Tomcat, Self Serve
August 22, 2006, 01:11 PM
Bethany
Thanks for your help. Adjusting the GAP did the trick!


Server Environment: Win2K3 Server WebFOCUS 7.13 Apache Tomcat standalone application server
August 22, 2006, 04:11 PM
Nightowl
Glad to hear it. Just don't try it with HTML Wink


Using: WF 7.1.5, XP Pro, Tomcat, Self Serve