Cell direction in table

A

anita

I have a table with rtl direction with 4 cells one of my cells ontext
is righttoleft what should I do in vba?
 
J

Jean-Guy Marcil

anita was telling us:
anita nous racontait que :
I have a table with rtl direction with 4 cells one of my cells ontext
is righttoleft what should I do in vba?

Sorry, but I cannot understand what your problem/question is.

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
(e-mail address removed)
Word MVP site: http://www.word.mvps.org
 
A

anita

Hi,
I want to know is there any way that I can set cell direction
individualy or not?
 
J

Jean-Guy Marcil

anita was telling us:
anita nous racontait que :
Hi,
I want to know is there any way that I can set cell direction
individualy or not?

Yes.
As Shauna suggested in your previous post, check out the .ReadingOrder
property of the Paragraphs property:

Here I change all cells in a table, but I could have changed only a few of
them, or even only some paragraphs inside some of the cells.

Dim tblTarget As Table
Dim cellCheck As Cell

Set tblTarget = Selection.Tables(1)

For Each cellCheck In tblTarget.Range.Cells
cellCheck.Range.Paragraphs.ReadingOrder = _
wdReadingOrderRtl
Next

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
(e-mail address removed)
Word MVP site: http://www.word.mvps.org
 

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