when I make a box I use
::oPrn:Box(X, Y, Z, K,;
{ nColorBordo, ::SetBorder(nSizeBordo) }, nBackcolor, ;
{cText, oFnt, nColorFont, ::SetAlign(nAlignOriz,nAlignVert) }, ;
"CM" )
on ::SetAlign(nAlignOriz,nAlignVert) I build the string to align/position
but I have only this
"TL" : TopLeft
"TR" : TopRight
"T" : Top Center
"BL" : Bottom Left
"BR" : Bottom Right
"B" : Bottom Center
"L" : Left Vert Center
"R" : Right Vert Center
Case nAlignOriz=1
cPosition:="T"
Case nAlignOriz=2
cPosition:="B"
Case nAlignOriz=3
cPosition:=""
Case nAlignVert=1
cAlign:="L"
Case nAlignVert=2
cAlign:="R"
Case nAlignVert=3
cAlign:=""
If I have 3/3 then I have " " and the on box I have problem
How I can make to justify a test in the box ?