Normal Topic alignment on a printstring (Read 403 times)
debmckee
Full Member
***
Offline



Posts: 123
Joined: Oct 5th, 2011
alignment on a printstring
Mar 13th, 2012 at 5:43pm
Print Post Print Post  
If the  following is my command, where and what would i put in to make the  number print with a right alignment.

PrintString(@Decimals(@FormFieldValue("PO Line Items","Quantity0",0), 0), 60, vStartY, 0, "calibri", 13,0)//Quantity

i thought it would go after the font size, but when I did that my values disappeared off my form !

Thank you in advance.........

  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2480
Joined: Aug 20th, 2003
Re: alignment on a printstring
Reply #1 - Mar 13th, 2012 at 6:23pm
Print Post Print Post  
Hello Deb,

It goes after the Measure only argument, also you will need to specify a width so it knows what to align against.

Code
Select All
PrintString(@Decimals(@FormFieldValue("PO Line Items","Quantity0",0), 0), 60, vStartY, 100, "calibri", 13, 0, 1)//Quantity 



-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged