Application Development and Automation 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: 
Read only

how to get different fonts in basic list

Former Member
0 Likes
734

how to get different fonts letters like bold italic etc in basic list

how to get different fonts letters like bold italic etc in basic list

5 REPLIES 5
Read only

Former Member
0 Likes
638

Hi!

FORMAT INTENSIFIED ON.

WRITE:/ 'A'. "intensified

FORMAT INTENSIFIED OFF.

Other FORMAT options:

INVERSE, COLOR, HOTSPOT, INPUT, FRAMES, RESET.

For example italic font style cannot be set in standard list. It can be solved only by SAPScript.

Regards

Tamás

Message was edited by:

Tamás Nyisztor

Read only

Former Member
0 Likes
638

Hi Azeez,

Use FORMAT option to have COLOR for texts and INTENSIFY to have bold for texts in the basic list.

FORMAT INTENSIFY ON.

WRITE 'TEXT IN BOLD' COLOR 5.

But you can not have Font Size to the letters and Italic letters in Basic list and this can be ahcieved in Scripts only.

Thanks,

Vinay

Read only

Former Member
0 Likes
638

Hi,

1. ... COLOR n [ON] or ... COLOR OFF

2. ... INTENSIFIED [ON] or ... INTENSIFIED OFF

3. ... INVERSE [ON] or ... INVERSE OFF

4. ... HOTSPOT [ON] or ... HOTSPOT OFF

5. ... INPUT [ON] or ... INPUT OFF

6. ... FRAMES [ON] or ... FRAMES OFF

7. ... RESET

Effect

Sets or modifies the valid output format for list output statements (WRITE, ULINE).

The formats set by FORMAT are effective from the next output operation to the list, i.e. from the next WRITE command or from the next new line.

The addition ON for switching on the relevant output format is optional.

You can also set the static additions ON, OFF and n (for COLOR) dynamically with = var (for further information, see end of this documentation).

Regards,

Sruthi

Read only

Former Member
0 Likes
638

Hi ,

Use the various formatting options with the write statement.

use FORMAT INTENSIFIED ON to bold the text.

FORMAT INTENSIFIED ON.

write <text>.

Regards,

Saumya<b></b>

Read only

Former Member
0 Likes
638

hi good

you can set the font color but you cant set the font type for the output of the basic list.

FONT COLOR COLOR TYPE.

THANKS

mrutyun^