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

gray field in sapscript

Former Member
0 Likes
959

i have gray header un sapscript

and i want to lower what the command

BOX FRAME 10 TW

BOX HEIGHT '1.7' LN INTENSITY 20

i have gray header un sapscript

and i want to lower what the command

BOX FRAME 10 TW

BOX HEIGHT '1.7' LN INTENSITY 20

6 REPLIES 6
Read only

Former Member
0 Likes
893

To a lighter shade of grey?

Lower the INTENSITY value.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
893

Change the intensity setting. Try 10.

BOX FRAME 10 TW
BOX HEIGHT '1.7' LN INTENSITY 10

Regards,

Rich Heilman

Read only

0 Likes
893

rich i try 10 cont work

Read only

0 Likes
893

INTENSITY 10 is for color only i tried 2 and i get white

Read only

0 Likes
893

Try 5?

Regards

Rich Heilman

Read only

Former Member
0 Likes
893

hi

good

go through this

The parameters like WIDTH , XPOS etc should be followed by a proper unit.

The INTENSITY is in the percentage of the grey scale.

The FRAME parameter is the thickness of the frame the default value is 0.

e.g.

/:BOX XPOS '5' CM YPOS '2' CM WIDTH '14' CM HEIGHT '20' CM FRAME 20 TW INTENSITY 10.

e.g.

/:BOX INTENSITY 10

will fill the current window background with a shading of grey scale 10%..

To draw a horizontal line we set the HEIGHT parameter to the value of 0.

e.g.

/:BOX XPOS '5' CM HEIGHT 0 TW FRAME 10 TW.

This will draw a horizontal line across the top edge of the window.

To draw a horizontal line we should set the value of WIDTH parameter to 0.

e.g.

/:BOX XPOS '5' CM YPOS WIDTH '0' TW FRAME 10 TW.

This will draw a vertical line across the complete height of the left edge of the current window.

thanks

mrutyun