Focal Point
[PDF] WRAP OF COLUMN

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

March 16, 2004, 02:05 PM
<pranas>
[PDF] WRAP OF COLUMN
Hi!

It seems, wrapping of column title does not works Frowner

Code generated wit Develeoper Studio 5.2.4:




TABLE FILE CAR
PRINT
DEALER_COST AS 'aasef aewefasefe safeasefeaef'
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE SET ONLINE-FMT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='SCREEN',
...
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
FONT='ARIAL',
SIZE=9,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$
TYPE=TITLE,
STYLE=BOLD,
$
TYPE=TITLE,
COLUMN=N1,
SQUEEZE=0.666667,
$
TYPE=TABHEADING,
SIZE=12,
STYLE=BOLD,
$
TYPE=TABFOOTING,
SIZE=12,
STYLE=BOLD,
$
TYPE=HEADING,
SIZE=12,
STYLE=BOLD,
$
TYPE=FOOTING,
SIZE=12,
STYLE=BOLD,
$
TYPE=SUBHEAD,
SIZE=10,
STYLE=BOLD,
$
TYPE=SUBFOOT,
SIZE=10,
STYLE=BOLD,
$
TYPE=SUBTOTAL,
BACKCOLOR=RGB(210 210 210),
$
TYPE=ACROSSVALUE,
SIZE=9,
$
TYPE=ACROSSTITLE,
STYLE=BOLD,
$
TYPE=GRANDTOTAL,
BACKCOLOR=RGB(210 210 210),
STYLE=BOLD,
$
TYPE=REPORT,
COLUMN=N1,
SQUEEZE=0.666667,
$
ENDSTYLE
END

Column title printed as "aasef aew!".
Some ideas?

Thanks,
Pranas

This message has been edited. Last edited by: <Mabel>,
March 17, 2004, 05:57 AM
Mikel
Yes, using WRAP or SQUEEZE, in PDF output, the title is truncated and WebFocus places the admiration character at the end. For data, works fine.

My only suggestion is wrap manually by placing a comma in the title of the column (AS 'line 1, line2').

Ther are other possible solutions, but more more complicated.

Regards,
Mikel
October 27, 2004, 05:34 PM
<javari>
Hello!

I'm having problems wrapping Across Titles in PDF. The comma in the across value doesn't work for me. I know you said that the other way is complicated, but can you try to explain?

Thanks,
Jenny
October 27, 2004, 06:46 PM
Spence
This code should wrap the field title in a PDF format report.

TABLE FILE CAR
SUM
RETAIL_COST AS 'Retail,Cost'
DEALER_COST AS 'Dealer,Cost'
BY
CAR
ACROSS
COUNTRY
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE SET ONLINE-FMT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0.500000,
BOTTOMMARGIN=0.500000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
FONT='ARIAL',
SIZE=9,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
RIGHTGAP=0.125000,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$
ENDSTYLE
END