IXpsOMDocumentSequence 接口 (xpsobjectmodel.h)

具有 XPS 文档内容的根对象。

继承

IXpsOMDocumentSequence 接口继承自 IXpsOMPartIXpsOMDocumentSequence 也具有以下类型的成员:

方法

IXpsOMDocumentSequence 接口具有这些方法。

 
IXpsOMDocumentSequence::GetDocuments

获取指向 IXpsOMDocumentCollection 接口的指针,该接口包含文档序列中指定的文档。
IXpsOMDocumentSequence::GetOwner

获取指向包含文档序列的 IXpsOMPackage 接口的指针。
IXpsOMDocumentSequence::GetPrintTicketResource

获取分配给文档序列的作业级打印票证的 IXpsOMPrintTicketResource 接口。
IXpsOMDocumentSequence::SetPrintTicketResource

设置文档序列的作业级打印票证资源。

注解

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


IXpsOMDocumentSequence    *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->CreateDocumentSequence (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::CreateDocumentSequence

IXpsOMPart

接口

XML 纸张规范