Link to home
Start Free TrialLog in
Avatar of rovi
rovi

asked on

Rotate Textboxes in Word

I have multiple textboxes on my word document. How can i programmatically go from textbox to textbox and rotate each individual textbox?
Avatar of pani_i
pani_i

you mean another way besides the "change text direction" option?
Record a macro whilst doing the text direction change, then edit it to see how it was done. The text direction bit looks like this - Selection.Orientation = wdTextOrientationUpward

Chris B
just a note to clarify, you won't be able to rotate the text boxes just change the direction of the text within them.
Cheers,
Andrew
I don't think you can do it programmatically. Macros require that they 'know' the object that they're working on. You will need to select all the text boxes and then run the macro, which kind of defeats the object of running a macro.

You could select the first box, perform the rotation operation via the menus, then select the remainder of the boxes and press F4. (This key is the 'repeat previous command key')
ASKER CERTIFIED SOLUTION
Avatar of Chris B
Chris B
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial