iXpsOMDocument 接口 (xpsobjectmodel.h)

构成文档的固定页面和文档级资源的有序序列。

继承

IXpsOMDocument 接口继承自 IXpsOMPartIXpsOMDocument 还具有以下类型的成员:

方法

IXpsOMDocument 接口包含以下方法。

 
IXpsOMDocument::Clone

创建接口的深层副本。 (IXpsOMDocument.Clone)
IXpsOMDocument::GetDocumentStructureResource

获取指向包含有关文档的结构信息的资源的 IXpsOMDocumentStructureResource 接口的指针。
IXpsOMDocument::GetOwner

获取指向包含文档的 IXpsOMDocumentSequence 接口的指针。
IXpsOMDocument::GetPageReferences

获取文档的 IXpsOMPageReferenceCollection 接口,该接口允许虚拟化访问其页面。
IXpsOMDocument::GetPrintTicketResource

获取文档级打印票证的 IXpsOMPrintTicketResource 接口。
IXpsOMDocument::GetSignatureBlockResources

获取指向 IXpsOMSignatureBlockResourceCollection 接口的指针,该接口引用文档的数字签名块资源的集合。
IXpsOMDocument::SetDocumentStructureResource

设置文档的 IXpsOMDocumentStructureResource 接口。
IXpsOMDocument::SetPrintTicketResource

设置文档级打印票证的 IXpsOMPrintTicketResource 接口。

注解

下面的代码示例演示了如何创建此接口的实例。


IXpsOMDocument    *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))
{
    hr = xpsFactory->CreatePartUri(partUriString, &partUri);
    
    if (SUCCEEDED(hr))
    {
        hr = xpsFactory->CreateDocument (partUri, &newInterface);
        
        if (SUCCEEDED(hr))
        {
            // use newInterface

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

要求

要求
最低受支持的客户端 Windows 7、带 SP2 的 Windows Vista 和适用于 Windows Vista 的平台更新 [桌面应用 |UWP 应用]
最低受支持的服务器 Windows Server 2008 R2、Windows Server 2008 SP2 和适用于 Windows Server 2008 的平台更新 [桌面应用 |UWP 应用]
目标平台 Windows
标头 xpsobjectmodel.h

另请参阅

IXpsOMObjectFactory::CreateDocument

IXpsOMPart

接口

XML 纸张规范