Skip to content

Latest commit

 

History

History
123 lines (97 loc) · 3.55 KB

nn-xpsobjectmodel-ixpsomcolorprofileresource.md

File metadata and controls

123 lines (97 loc) · 3.55 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NN:xpsobjectmodel.IXpsOMColorProfileResource
IXpsOMColorProfileResource (xpsobjectmodel.h)
Provides an IStream interface to a color profile resource.
IXpsOMColorProfileResource
IXpsOMColorProfileResource interface [XPS Documents and Packaging]
IXpsOMColorProfileResource interface [XPS Documents and Packaging]
described
xps.ixpsomcolorprofileresource
xpsobjectmodel/IXpsOMColorProfileResource
xps\ixpsomcolorprofileresource.htm
xps
8a344300-c3fc-4225-bfa5-d5d33798a094
12/05/2018
IXpsOMColorProfileResource, IXpsOMColorProfileResource interface [XPS Documents and Packaging], IXpsOMColorProfileResource interface [XPS Documents and Packaging],described, xps.ixpsomcolorprofileresource, xpsobjectmodel/IXpsOMColorProfileResource
xpsobjectmodel.h
Windows
Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista [desktop apps \| UWP apps]
Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 [desktop apps \| UWP apps]
XpsObjectModel.idl
Windows
19H1
IXpsOMColorProfileResource
xpsobjectmodel/IXpsOMColorProfileResource
c++
APIRef
kbSyntax
COM
xpsobjectmodel.h
IXpsOMColorProfileResource

IXpsOMColorProfileResource interface

-description

Provides an IStream interface to a color profile resource.

-inheritance

The IXpsOMColorProfileResource interface inherits from IXpsOMResource. IXpsOMColorProfileResource also has these types of members:

-remarks

The code example that follows illustrates how to create an instance of this interface.

IXpsOMColorProfileResource    *newInterface;
IOpcPartUri                   *partUri;

// Note the implicit requirement that CoInitializeEx 
//  has previously been called from this thread.

hr = CoCreateInstance(
    __uuidof(XpsOMObjectFactory),
    NULL,
    CLSCTX_INPROC_SERVER,
    _uuidof(IXpsOMObjectFactory),
    reinterpret_cast<LPVOID*>(&xpsFactory)
    );

if (SUCCEEDED(hr))
{
    // The partUriString and acquiredStream variables 
    //   are defined outside of this example.
    hr = xpsFactory->CreatePartUri(
        partUriString, 
        &partUri);
    if (SUCCEEDED(hr))
    {
        hr = xpsFactory->CreateColorProfileResource (
            acquiredStream, 
            partUri,
            &newInterface);
        if (SUCCEEDED(hr))
        {
            // use newInterface

            newInterface->Release();
        }
        partUri->Release();
    }
    xpsFactory->Release();
}
else
{
    // evaluate HRESULT error returned in hr
}

-see-also

IXpsOMObjectFactory::CreateColorProfileResource

IXpsOMResource

Interfaces

XML Paper Specification