Is it possible to turn up text vertically?

A

akokin

Hello.

With function "StrReverse" I can reverse some selected text of horizontally
(reflecting). But I wonder it there is a way to turn up of selected text by
vertically (upside down)?

Thank you.
 
J

Jan Hyde (VB MVP)

"akokin" <[email protected]>'s wild thoughts were released
Hello.

With function "StrReverse" I can reverse some selected text of horizontally
(reflecting). But I wonder it there is a way to turn up of selected text by
vertically (upside down)?

Actually it doesn't. StrReverse just reverses the order of
the characters, it doesn't create a mirror image along the y
plane, which is what you're asking for in the x plane
(upside down)

Since you seem to want to do this with selected text you'd
probably need to change it to another font that has it's
text upside down.
 
J

Jonathan West

akokin said:
Hello.

With function "StrReverse" I can reverse some selected text of
horizontally (reflecting). But I wonder it there is a way to turn up of
selected text by vertically (upside down)?

Place the text in a table cell or textbox. Set the text direction using
Format, Text direction.

To do the same in code, set the Orientation property of the Selection, Range
or TextFrame object.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top