IXpsFixedPageWriter.AddResource(Type, Uri) Method

Definition

Adds a new XpsResource to the current page.

public:
 System::Windows::Xps::Packaging::XpsResource ^ AddResource(Type ^ resourceType, Uri ^ resourceUri);
public System.Windows.Xps.Packaging.XpsResource AddResource (Type resourceType, Uri resourceUri);
abstract member AddResource : Type * Uri -> System.Windows.Xps.Packaging.XpsResource
Public Function AddResource (resourceType As Type, resourceUri As Uri) As XpsResource

Parameters

resourceType
Type

The type of resource to add.

resourceUri
Uri

The absolute path of the resource to add, or null.

Returns

The new XML Paper Specification (XPS) resource that was added.

Exceptions

resourceType is null.

resourceType is an empty string.

Remarks

AddResource adds a new XpsResource to the document package, and associates it with the current FixedPage.

If resourceUri is null, a unique resource Uri is automatically created.

Applies to

See also