Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Replace a Specified Font in a Microsoft Word DocumentContent of Replace a Specified Font in a Microsoft Word Document.vbsMD5 Hash: DEB54B9CB3C7CF33772C3361D9810B8F |
||
Const wdReplaceAll = 2
Set objWord = CreateObject("Word.Application") objWord.Visible = True Set objDoc = objWord.Documents.Open("C:\Scripts\Test.doc") Set objSelection = objWord.Selection objSelection.Find.Font.Name = "Gigi" objSelection.Find.Forward = TRUE objSelection.Find.Replacement.Font.Name = "Arial" objSelection.Find.Execute "", ,False, , , , , , , ,wdReplaceAll | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |