我第一次尝试使用开放 XML。我正在关注此处的教程http://www.codeproject.com/Articles/36694/Creation-of-a-Word-2007-document-using-the-Open-XM。当我将变量声明为新变量时,WordprocessingDocument
我收到错误:
“类型 WordprocessingDocument.Create 未定义”。
Imports DocumentFormat.OpenXml
Imports DocumentFormat.OpenXml.Wordprocessing
Imports DocumentFormat.OpenXml.Packaging
Partial Class test
Public Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
makedoc("file.docx")
End Sub
Private Sub makedoc(ByVal documentfilename As String)
Using mydoc As New WordprocessingDocument.Create(documentfilename, WordprocessingDocumentType.Document)
Dim mainPart As MainDocumentPart = mydoc.AddMainDocumentPart()
'Create Document tree for simple document.
mainPart.Document = New Document()
'Create Body (this element contains
'other elements that we want to include
Dim body As New Body()
'Create paragraph
Dim paragraph As New Paragraph()
Dim run_paragraph As New Run()
' we want to put that text into the output document
Dim text_paragraph As New Text("Hello World!")
'Append elements appropriately.
run_paragraph.Append(text_paragraph)
paragraph.Append(run_paragraph)
body.Append(paragraph)
mainPart.Document.Append(body)
' Save changes to the main document part.
mainPart.Document.Save()
End Using