IXpsOMDocumentSequence 介面 (xpsobjectmodel.h)
具有 XPS 檔案內容的根物件。
繼承
IXpsOMDocumentSequence 介面繼承自 IXpsOMPart。 IXpsOMDocumentSequence 也有下列類型的成員:
方法
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 Vista 的 Windows 7、Windows Vista SP2 和平臺更新 [傳統型應用程式 |UWP 應用程式] |
最低支援的伺服器 | Windows Server 2008 R2、Windows Server 2008 SP2 和 Platform Update for Windows Server 2008 [傳統型應用程式 |UWP 應用程式] |
目標平台 | Windows |
標頭 | xpsobjectmodel.h |