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]...
 
Top