Line thickness

F

Fuzzhead

I have the following macro to insert a table. How do I get the line thickness
to 450pt.

ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1, NumColumns:= _
1, DefaultTableBehavior:=wdWord9TableBehavior,
AutoFitBehavior:=wdAutoFitFixed
Selection.Tables(1).Rows.SetLeftIndent LeftIndent:=5.4,
RulerStyle:=wdAdjustNone
Selection.Tables(1).Columns(1).SetWidth ColumnWidth:=498,
RulerStyle:=wdAdjustNone
 
S

Stefan Blom

You cannot; you can only use the values corresponding to the
wdLineWidth constants (look in the Object Browser in the Visual Basic
Editor or try recording the border width that you want).

--
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

Similar Threads

Table resizing 2
Table Format help 1
Table Repeating Issue 1
Word 2007 Not responding 0
Find and Replace Question 3
Multiple Tables 2
If Then Else question 3
Populating a Table 8

Top