Christopher Greaves |
|||
Christopher Greaves |
|||
If you are interested in applications please visit www.VBASolutions.ca .
If you are interested in end-user macros please visit www.TorontoMacros.com .
It is regular but boring VBA code, and not associated with List Templates. I place the leading part of the code here just so you can know that it exists:
Public Function lngMifToStyle(typParagraphStyle As typMIF_PGF, sty As Style) As Long' On Error GoTo Failed
With sty
'''
.Font.Name = typParagraphStyle.typFont.strPlatformName
'''
If Len(typParagraphStyle.strIndentRight) > 0 Then
.ParagraphFormat.RightIndent = InchesToPoints(typParagraphStyle.strIndentRight)
Else
.ParagraphFormat.RightIndent = 0
End If
'''
blah
blah
blah