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

Re: Cell direction in table by Jean-Guy

Jean-Guy
Wed Oct 04 20:04:54 CDT 2006

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
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org



Re: Cell direction in table by anita

anita
Wed Oct 04 23:30:45 CDT 2006

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

Jean-Guy Marcil wrote:
> 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
> jmarcilREMOVE@CAPSsympatico.caTHISTOO
> Word MVP site: http://www.word.mvps.org


Re: Cell direction in table by Jean-Guy

Jean-Guy
Thu Oct 05 00:40:57 CDT 2006

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
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org