Skip to content

Latest commit

 

History

History
110 lines (84 loc) · 2.89 KB

nn-xpsobjectmodel-ixpsomgeometry.md

File metadata and controls

110 lines (84 loc) · 2.89 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.IXpsOMGeometry
IXpsOMGeometry (xpsobjectmodel.h)
Describes the shape of a path or of a clipping region.
IXpsOMGeometry
IXpsOMGeometry interface [XPS Documents and Packaging]
IXpsOMGeometry interface [XPS Documents and Packaging]
described
xps.ixpsomgeometry
xpsobjectmodel/IXpsOMGeometry
xps\ixpsomgeometry.htm
xps
d3f74c1e-49ef-40ee-a2f4-b6d198b57624
12/05/2018
IXpsOMGeometry, IXpsOMGeometry interface [XPS Documents and Packaging], IXpsOMGeometry interface [XPS Documents and Packaging],described, xps.ixpsomgeometry, xpsobjectmodel/IXpsOMGeometry
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
IXpsOMGeometry
xpsobjectmodel/IXpsOMGeometry
c++
APIRef
kbSyntax
COM
xpsobjectmodel.h
IXpsOMGeometry

IXpsOMGeometry interface

-description

Describes the shape of a path or of a clipping region.

-inheritance

The IXpsOMGeometry interface inherits from IXpsOMShareable. IXpsOMGeometry also has these types of members:

-remarks

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

IXpsOMGeometry    *newInterface;

// 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))
{
    hr = xpsFactory->CreateGeometry (&newInterface);
    if (SUCCEEDED(hr))
    {
        // use newInterface

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

-see-also

IXpsOMObjectFactory::CreateGeometry

IXpsOMShareable

Interfaces

XML Paper Specification