WordprocessingDocument.Create Method (Stream, WordprocessingDocumentType)
Creates a new instance of the WordprocessingDocument class from the IO stream.
Namespace: DocumentFormat.OpenXml.Packaging
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
Public Shared Function Create ( _
stream As Stream, _
type As WordprocessingDocumentType _
) As WordprocessingDocument
'Usage
Dim stream As Stream
Dim type As WordprocessingDocumentType
Dim returnValue As WordprocessingDocument
returnValue = WordprocessingDocument.Create(stream, _
type)
public static WordprocessingDocument Create(
Stream stream,
WordprocessingDocumentType type
)
Parameters
- stream
Type: System.IO.Stream
The IO stream on which to open the package.
- type
Type: DocumentFormat.OpenXml.WordprocessingDocumentType
The type of the WordprocessingDocument.
Return Value
Type: DocumentFormat.OpenXml.Packaging.WordprocessingDocument
A new instance of WordprocessingDocument.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | Thrown when "stream" is null reference. |
IOException | Thrown when "stream" is not opened with Write access. |