Since you can change the text direction for the selection, you should be
able to modify the relevant styles too.
Usually, it should suffice to modify the Normal style: Right-click the style
name in the Styles pane, and choose Modify. In the Modify Style dialog box,
click Format, and then click the relevant option. My guess is that you
should click Paragraph (but I don't know, since I've never used a
right-to-left languages).
If this doesn't work, try modifying the TOC styles directly. In the Styles
task pane, click the Manage Styles button, and use the Edit tab to change
the TOC styles (called TOC 1, TOC 2, etc. in English language versions of
Word).
If everything else fails, you could use a macro:
Sub ChangeStyles()
ActiveDocument.Styles(wdStyleNormal).ParagraphFormat. _
ReadingOrder = wdReadingOrderRtl
ActiveDocument.Styles(wdStyleTOC1).ParagraphFormat. _
ReadingOrder = wdReadingOrderRtl
ActiveDocument.Styles(wdStyleTOC2).ParagraphFormat. _
ReadingOrder = wdReadingOrderRtl
'Add commands for any additional TOC styles / levels that
'need to be changed.
End Sub
For instructions, see
http://www.gmayor.com/installing_macro.htm.
--
Stefan Blom
Microsoft Word MVP
in message
news:
[email protected]...