Skip to content

Latest commit

 

History

History
123 lines (97 loc) · 3.44 KB

nn-xpsobjectmodel-ixpsomfontresource.md

File metadata and controls

123 lines (97 loc) · 3.44 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.IXpsOMFontResource
IXpsOMFontResource (xpsobjectmodel.h)
Provides an IStream interface to a font resource.
IXpsOMFontResource
IXpsOMFontResource interface [XPS Documents and Packaging]
IXpsOMFontResource interface [XPS Documents and Packaging]
described
xps.ixpsomfontresource
xpsobjectmodel/IXpsOMFontResource
xps\ixpsomfontresource.htm
xps
dd0ce1c0-1c04-46a8-9075-93de9b3e3062
12/05/2018
IXpsOMFontResource, IXpsOMFontResource interface [XPS Documents and Packaging], IXpsOMFontResource interface [XPS Documents and Packaging],described, xps.ixpsomfontresource, xpsobjectmodel/IXpsOMFontResource
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
IXpsOMFontResource
xpsobjectmodel/IXpsOMFontResource
c++
APIRef
kbSyntax
COM
xpsobjectmodel.h
IXpsOMFontResource

IXpsOMFontResource interface

-description

Provides an IStream interface to a font resource.

-inheritance

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

-remarks

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

IXpsOMFontResource    *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->CreateFontResource (
            acquiredStream, 
            XPS_FONT_EMBEDDING_NORMAL,    // normal
            partUri, 
            FALSE,                        // not obfuscated
            &newInterface);
        if (SUCCEEDED(hr))
        {
            // use newInterface

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

-see-also

IXpsOMObjectFactory::CreateFontResource

IXpsOMResource

Interfaces

XML Paper Specification