Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to make ULINE BOLD

Former Member
0 Kudos
735

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

7 REPLIES 7

Former Member
0 Kudos
277

Hey Neha,

I think it is not possible.

Former Member
0 Kudos
277

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

jayanthi_jayaraman
Active Contributor
0 Kudos
277

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.

Former Member
0 Kudos
277

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

Former Member
0 Kudos
277

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

Former Member
0 Kudos
277

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

Former Member
0 Kudos
277

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