Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Change the Font Name and Size for an Entire Word DocumentContent of Change the Font Name and Size for an Entire Word Document.vbsMD5 Hash: 0FD1BEC3287085D9A778E7771529960A |
||
Set objWord = CreateObject("Word.Application")
objWord.Visible = True Set objDoc = objWord.Documents.Add() Set objSelection = objWord.Selection objSelection.TypeText "This is the first paragraph." objSelection.TypeParagraph() objSelection.TypeText "This is the second paragraph." objSelection.TypeParagraph() objSelection.TypeText "This is the third paragraph." objSelection.TypeParagraph() Set objRange = objDoc.Range() objRange.Font.Name = "Arial" objRange.Font.Size = 10 | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |