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 set vertical line in SAPScript

Former Member
0 Kudos

Dear All,

I have to set vertical line at a particular position of SAPScript. Here the lines are of varying length. Can you suggest how to do that?

Line 1...................... | Vertical Line

Line 2......................... | Vertical Line

Line 3............... | Vertical Line

Thanks and regards,

Atanu

1 ACCEPTED SOLUTION

former_member181962
Active Contributor
0 Kudos

Use the box command with zero width for vertical lines.

POsition the line by x position and y postion.

box <xpos> <ypos> <width> <height> <thickness in twips> twips.

REgards,

Ravi

7 REPLIES 7

former_member181962
Active Contributor
0 Kudos

Use the box command with zero width for vertical lines.

POsition the line by x position and y postion.

box <xpos> <ypos> <width> <height> <thickness in twips> twips.

REgards,

Ravi

Former Member
0 Kudos

Hii

use this

BOX WIDTH 0 FRAME 10

BOX HEIGHT 0 FRAME 10

BOX WIDTH 5 CM HEIGHT 1 CM FRAME 10 TW INTENSITY 10

BOX WIDTH 7 CM HEIGHT 5 CM FRAME 10 TW INTENSITY 10

HOPE THIS HELPS

Thanks & Regards

Naresh

Former Member
0 Kudos

Hi

Use the <b>Box command</b> with same coordinates for x and y.

box <xpos> <ypos>.

<i>Hope This Info Helps YOU.</i>

Regards,

Raghav

Former Member
0 Kudos

hi dey,

use BOX command

eg:

BOX XPOS 0 CM YPOS 0 CM WIDTH '1.5' CM HEIGHT 10 CM FRAME 10 TW

hope this helps,

priya.

Former Member
0 Kudos

hi

use this

BOX FRAME 20 TW

BOX XPOS 5 CM HEIGHT 10 CM WIDTH 0 CM FRAME 20 TW INTENSITY 60

bye.

Former Member
0 Kudos

Hi,

Use the BOX command with Width 0 and give appropriate value for the Height parameter.

Former Member
0 Kudos

dear atanu,

/: SIZE HEIGHT '4' MM WIDTH '0' MM

is used to draw a vertical line.

regards,

keerthi.