View Single Post
 
Old 12-04-2011, 06:55 AM
matin_vv matin_vv is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Dec 2011
Posts: 3
matin_vv is on a distinguished road
Default

I think I managed the code. Here it is:

Sub MathObjReFormat()
Dim MathObj As Object
For Each MathObj In ActiveDocument.OMaths
With MathObj
.ConvertToNormalText
.Range.Font.Name = "Times New Roman"
.Range.Font.Size = 12
.Range.Font.Italic = True
End With
Next
End Sub
Reply With Quote