Heim  >  Artikel  >  Web-Frontend  >  Add a Picture to a Microsoft Word Document_javascript技巧

Add a Picture to a Microsoft Word Document_javascript技巧

WBOY
WBOYOriginal
2016-05-16 19:12:361142Durchsuche

Demonstration script that adds a picture (C:\Scripts\Logo.jog) to 
a Microsoft Word document

复制代码 代码如下:

Set objWord = CreateObject("Word.Application")
objWord.Visible = True
Set objDoc = objWord.Documents.Add()
Set objSelection = objWord.Selection

Set objShape = objDoc.Shapes
objShape.AddPicture("C:\Scripts\Logo.jpg")

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn