View Single Post
 
Old 05-08-2018, 08:48 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

All you really need to test for uniformity is something like:
Code:
Sub TestFonts()
With ActiveDocument.Range
  If .Font.Name = "" Then .InsertBefore "Check Font Name" & vbCr
  If .Font.Size = 9999999 Then .InsertBefore "Check Font Size" & vbCr
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote