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

BOLD using Write Statement

Former Member
0 Likes
9,357

Is there any way to display specific field values( in list display) in BOLD format apart from giving colors.

Thanks in advance..

3 REPLIES 3
Read only

Former Member
0 Likes
3,553

i don't think it is posible below 4.7

same thread....

Read only

Former Member
0 Likes
3,553

Hi Mohankumar,

It is not possible to get Bold characters using write statement. But, you can get your text highlighted using the addition INTENSIFIED.

e.g.

Format INTENSIFIED ON.

WRITE 'Text1'.

Format INTENSIFIED OFF.

Effect

Intensified - affects the background color.

Each color exists in a normal (desaturated) and in an intensified (saturated) form. ... INTENSIFIED takes the current background color from the "intensified" palette, while the ... INTENSIFIED OFF uses the "normal" palette.

Note :

Every time a new event ( START-OF-SELECTION, TOP-OF-PAGE, ...) is started, the system setting reverts to ... INTENSIFIED /color palette: "output field intensified", IntNorm).

On a standard background (COLOR COL_BACKGROUND), the foreground color may be affected in certain cases.

If, for example, you use the addition ... INVERSE, the addition is ... INTENSIFIED.

Hope this helps,

Regards,

Pragya

Read only

Former Member
0 Likes
3,553

Did you try

FORMAT INTENSIFIED ON.

Now all the WRITE statement following this, the data will be in BOLD.

Regards,

Ravi

Note : Please mark all the helpful answers