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

scripts

Former Member
0 Likes
408

hai any body tell me can we place the text verticalli in a window

in scripts.how it is possible...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
394

I do not this this option is there in Script

But you can put each latter vertically to get vertival text

Eg

  • S

  • A

  • M

  • P

  • L

  • E

If you write each letter in new line you can get vertical text

3 REPLIES 3
Read only

Former Member
0 Likes
395

I do not this this option is there in Script

But you can put each latter vertically to get vertival text

Eg

  • S

  • A

  • M

  • P

  • L

  • E

If you write each letter in new line you can get vertical text

Read only

Former Member
0 Likes
394

hi,

: POSITION WINDOW

/: POSITION XORIGIN '0' MM YORIGIN '+10' MM

: SIZE HEIGHT '10' MM WIDTH '2' MM

i just giving an idea, in the above position command maintain xorigin as 0 and in size command maintain low width dimension.try this it may come

regards,

pavan t.

Read only

Former Member
0 Likes
394

hi

good

You can print horizantally. using the following code

You know the total length of your text right.

You need to have conditions to avoid unnecessary spaces.

If &v_text(1)& is not initial.

ph &v_text(1)&

endif.

if &v_text+1(1) is not initial.

ph &v_text+1(1)

enddif.

if &v_text+2(1) is not initial.

ph &v_text+2(1)

enddif.

But we cant rotate letters to left . Not sure . Will explore on it and let you know.

thanks

mrutyun^