I'd like to programatically add a page border to a document being created.
The Macro code from Word is
With Selection.Sections(1)
With .Borders(wdBorderLeft)
.LineStyle = wdLineStyleThinThickSmallGap
.LineWidth = wdLineWidth300pt
.Color = wdColorAutomatic
End With
End With
I can't fathom out how to convert this, if indeed it is possible, the only thing i seem to be able to come up with is some 3rd party add in (spire.doc) but don't have the funds for this.
Anyone with any ideas?
Thanks