Problem in linespacing for paragraphs

  • Thread starter LineSpace in paragraph
  • Start date
L

LineSpace in paragraph

Hi,
In vba I have created a table with 2 rows and 3 cells. In each cell I set
Paragraph linespace to 1 cm, I set Toppadding for cell = 0 and Spacebefore
for paragraph to 0 too. but as I set Linespace there is an extra space above
my text in paragraph
and edge of the cell. I think It problam comes from baselinealignment
setting in table. I set BaseLineAlignment to every below this constants.
"wdbaselinealigntop", "wdbaselineAligncenter", "wdbaselineAlignbaseline",
"wdbaselineAlignFarEast50"

just In FarEAst Option my text come upper than the others but no compeletly.
I just need to set line spaces in between my rows in paragraphs not for
first line of paragraph to previous paragraphs or anything.
what should I do please help
 
S

Stefan Blom

As far as I know, the baseline options you are referring to is only
available (via the user interface, that is) for Asian language
versions of Word. Have you tried checking the compatibility option
"Don't center 'exact line height' lines"? In VBA, you would do the
following:

ActiveDocument.Compatibility(wdExactOnTop) = True

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 

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