2007 Jul 11 5:27 AM
Hi All,
Can anyone tell me how i can make a line bold.(ULINE)
I have tried paragraph format, and Tags <b> but these two didnt work.
Regards,
Neha
2007 Jul 11 5:33 AM
2007 Jul 11 5:34 AM
hi,
U can write the text in bold using
FORMAT INTENSIFIED ON.
WRITE : / 'welcome'.
FORMAT INTENSIFIED OFF.
but it is no possible for the line.
Message was edited by:
Roja Velagapudi
2007 Jul 11 5:46 AM
Hi,
Create a style and in the paragraph give underlined in font and in character select the option Bold in Font->Font Style.
Then in smartform->Text element->General Attributes use underscore.
Text Element->Output options, choose the style as created above.
In Text element->General Attributes, click the editor icon and give P1 on the left and in the line
<C1>_______</>
where P1 is the paragraph in the style and C1 is the character in the style.
It is working as expected.
Kindly reward points by clikcing the star on the left of reply,if it helps.
2007 Jul 11 5:54 AM
Hi Neha,
I think it's not possible with ULINE. Instead, draw a BOX that looks like a line and set the FRAME to your prefered tickness.
Example:
BOX YPOS '2.7' CM HEIGHT 10 TW FRAME 10 TW
2007 Jul 11 6:12 AM
create a character format(suppose C1) with BOLD and ULINE ( by clicking the radio buttons in the character format font).
now in layout suppose your paragraph format is p1
p1 <C1> </>
the space will draw the under line.
regards
shiba dutta
2007 Jul 11 7:45 AM
If this requirement is for Report Output, use the following code to get a BOLD ULINE :
data : l_hex(2) type C ,
l_char(4) type X .
field-symbols : <f>.
l_char = '00000125'.
assign l_Char to <f> type 'C'.
write <f> to l_hex.
unassign <f>.
do 5 times.
write : l_hex+1(1) no-gap.
enddo.
Do let me know if this helped.
Thanks,
Pranjal.
Message was edited by:
Pranjal Gadkari
2007 Jul 11 8:00 AM
Hi,
In the statement,
BOX HEIGHT '0' LN FRAME 10 TW,
increase the intensity according to your requirement e.g. 30 TW .
Hope this helps.
Reward if helpful.
Regards,
Sipra