XpsDocument Class
Provides a Package that holds the content of an XPS document.
Assembly: ReachFramework (in ReachFramework.dll)
| Name | Description | |
|---|---|---|
![]() | XpsDocument(Package^) | Initializes a new instance of the XpsDocument class with access to a specified XML Paper Specification (XPS) Package and default interleaving, resource, and compression options. |
![]() | XpsDocument(Package^, CompressionOption) | Initializes a new instance of the XpsDocument class that is contained in a specified Package with specified default interleaving, resource, and compression options. |
![]() | XpsDocument(Package^, CompressionOption, String^) | Initializes a new instance of the XpsDocument class that is contained in a specified Package with the specified default interleaving, resource, and compression options. |
![]() | XpsDocument(String^, FileAccess) | Initializes a new instance of the XpsDocument class that is contained in a specified Package file with default interleaving, resource, and compression options. |
![]() | XpsDocument(String^, FileAccess, CompressionOption) | Initializes a new instance of the XpsDocument class that is contained in a specified Package file with default interleaving, resource, and compression options. |
| Name | Description | |
|---|---|---|
![]() | CoreDocumentProperties | Gets the core PackageProperties of the XPS document. |
![]() | FixedDocumentSequenceReader | Gets an IXpsFixedDocumentSequenceReader for reading the document. |
![]() | IsReader | Gets a value that indicates whether the package is readable. |
![]() | IsSignable | Gets a value that indicates whether the package can be digitally signed. |
![]() | IsWriter | Gets a value that indicates whether the package is writable. |
![]() | Signatures | Gets a collection of XML Paper Specification (XPS) signatures that are associated with the package. |
![]() | Thumbnail | Gets or sets the XML Paper Specification (XPS) thumbnail image that is associated with the document. |
![]() | Uri | Gets or sets the uniform resource identifier (URI) of the part.(Inherited from XpsPartBase.) |
| Name | Description | |
|---|---|---|
![]() | AddFixedDocumentSequence() | Adds a root FixedDocumentSequence to the package and returns a writer. |
![]() | AddThumbnail(XpsImageType) | Adds a thumbnail image to the package. |
![]() | Close() | Closes the XPS document Package. |
![]() ![]() | CreateXpsDocumentWriter(XpsDocument^) | Creates an XpsDocumentWriter for writing an XpsDocument. |
![]() | Dispose(Boolean) | Releases the unmanaged resources that are used by the XpsDocument and optionally, releases the managed resources. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetFixedDocumentSequence() | Returns the fixed-document sequence at the root of the package. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | RemoveSignature(XpsDigitalSignature^) | Deletes a signature from the package. |
![]() | SignDigitally(X509Certificate^, Boolean, XpsDigSigPartAlteringRestrictions) | Signs a collection of package parts with a specified X.509 certificate. |
![]() | SignDigitally(X509Certificate^, Boolean, XpsDigSigPartAlteringRestrictions, Guid) | Signs a collection of package parts by using a specified X.509 certificate. |
![]() | SignDigitally(X509Certificate^, Boolean, XpsDigSigPartAlteringRestrictions, Guid, Boolean) | Signs a collection of package parts with a specified X.509 certificate. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IDisposable::Dispose() | This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended to be used directly from your code. Use the type-safe Dispose method instead. |
An XpsDocument contains a FixedDocumentSequence that comprises one or more FixedDocument elements.
The XpsDocument constructor is passed a reference to a Package for writing, storing, and reading the content elements of the document.
A new empty XPS Package is created by using the Package constructor.
An existing XPS Package is opened by using the Package::Open method.
A FixedDocumentSequence root is added to an empty XPS Package by calling the AddFixedDocumentSequence method.
PrintTicket elements with printer information and control can also be associated with the FixedDocumentSequence, or on individual FixedDocument and FixedPage elements that are stored in the XpsDocument.
For more information about XPS see the XML Paper Specification (XPS) available for download at http://go.microsoft.com/fwlink/?LinkID=65761.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





