VPX Print Basics

brkarthikeyan

New Member
Hi All,
I'm new to VPX Print and i need to know how to align a text (i.e., center of the page) i read in the documentation about <CENTER> tag... but it is not working for me...:(

find my piece of code below...

PUT STREAM coverStream UNFORMATTED
"<R1><C22><CENTER>" + "Text to be aligned to Center" + "</CENTER><R10><C60>".

Pls help me out... Thanks in advance.
 

M.Fondacci

New Member
Hi All,
I'm new to VPX Print and i need to know how to align a text (i.e., center of the page) i read in the documentation about <CENTER> tag... but it is not working for me...:(

find my piece of code below...

PUT STREAM coverStream UNFORMATTED
"<R1><C22><CENTER>" + "Text to be aligned to Center" + "</CENTER><R10><C60>".

Pls help me out... Thanks in advance.

I know that this message was sent in 2010!
Try:
PUT STREAM coverStream UNFORMATTED
"<R1><C22><CENTER=C50>Text to be aligned to Center<R10><C60>".
and the text will be centered between column 22 and 50.

Marcel
 
Top