This documentation is archived and is not being maintained.
XpsResource Class
Visual Studio 2010
Defines the base class for resources that can be added to an XpsDocument.
System::Object
System.Windows.Xps.Packaging::XpsPartBase
System.Windows.Xps.Packaging::XpsResource
System.Windows.Xps.Packaging::XpsColorContext
System.Windows.Xps.Packaging::XpsFont
System.Windows.Xps.Packaging::XpsImage
System.Windows.Xps.Packaging::XpsResourceDictionary
System.Windows.Xps.Packaging::XpsStructure
System.Windows.Xps.Packaging::XpsThumbnail
System.Windows.Xps.Packaging::XpsPartBase
System.Windows.Xps.Packaging::XpsResource
System.Windows.Xps.Packaging::XpsColorContext
System.Windows.Xps.Packaging::XpsFont
System.Windows.Xps.Packaging::XpsImage
System.Windows.Xps.Packaging::XpsResourceDictionary
System.Windows.Xps.Packaging::XpsStructure
System.Windows.Xps.Packaging::XpsThumbnail
Assembly: ReachFramework (in ReachFramework.dll)
The XpsResource type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Uri | Gets or sets the uniform resource identifier (URI) of the part. (Inherited from XpsPartBase.) |
| Name | Description | |
|---|---|---|
![]() | Commit | Commits all changes and flushes the resource to the document package. |
![]() | 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.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetStream | When overridden in a derived class, returns the I/O stream for reading or writing the resource. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | RelativeUri | Returns the URI of the resource that is relative to a specified absolute URI. |
![]() | 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. |
The following example shows how to add XpsResource derived types to an XpsDocument.
// -------------------------- AddPageResources ---------------------------- Dictionary<System::String^,List<XpsResource^>^>^ AddPageResources (IXpsFixedPageWriter^ fixedPageWriter) { // Collection of all resources for this page. // Key: "XpsImage", "XpsFont" // Value: List of XpsImage or XpsFont Dictionary<System::String^,List<XpsResource^>^>^ resources = gcnew Dictionary<System::String^,List<XpsResource^>^>(); // Collections of images and fonts used in the current page. List<XpsResource^>^ xpsImages = gcnew List<XpsResource^>(); List<XpsResource^>^ xpsFonts = gcnew List<XpsResource^>(); try { XpsImage^ xpsImage; XpsFont^ xpsFont; // Add, Write, and Commit image1 to the current page. xpsImage = fixedPageWriter->AddImage(XpsImageType::JpegImageType); WriteToStream(xpsImage->GetStream(), image1); xpsImage->Commit(); xpsImages->Add(xpsImage); // Add image1 as a required resource. // Add, Write, and Commit font 1 to the current page. xpsFont = fixedPageWriter->AddFont(); WriteObfuscatedStream(xpsFont->Uri->ToString(), xpsFont->GetStream(), font1); xpsFont->Commit(); xpsFonts->Add(xpsFont); // Add font1 as a required resource. // Add, Write, and Commit image2 to the current page. xpsImage = fixedPageWriter->AddImage(XpsImageType::TiffImageType); WriteToStream(xpsImage->GetStream(), image2); xpsImage->Commit(); xpsImages->Add(xpsImage); // Add image2 as a required resource. // Add, Write, and Commit font2 to the current page. xpsFont = fixedPageWriter->AddFont(false); WriteToStream(xpsFont->GetStream(), font2); xpsFont->Commit(); xpsFonts->Add(xpsFont); // Add font2 as a required resource. // Return the image and font resources in a combined collection. resources->Add("XpsImage", xpsImages); resources->Add("XpsFont", xpsFonts); return resources; } catch (XpsPackagingException^ xpsException) { throw xpsException; } };// end:AddPageResources()
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
