(xpsobjectmodel.h) IXpsOMPartResources 介面
提供 XPS 檔之所有共用部分型資源的存取權。
繼承
IXpsOMPartResources介面繼承自IUnknown介面。 IXpsOMPartResources 也有下列類型的成員:
方法
IXpsOMPartResources介面具有這些方法。
IXpsOMPartResources::GetColorProfileResources 取得 IXpsOMColorProfileResourceCollection 介面,其中包含 XPS 檔中所使用的色彩設定檔。 |
IXpsOMPartResources::GetFontResources 取得 IXpsOMFontResourceCollection 介面,其中包含 XPS 檔中所使用的字型。 |
IXpsOMPartResources::GetImageResources 取得 IXpsOMImageResourceCollection 介面,其中包含 XPS 檔中所使用的影像。 |
IXpsOMPartResources::GetRemoteDictionaryResources 取得 IXpsOMRemoteDictionaryResourceCollection 介面,其中包含 XPS 檔中所使用的遠端資源字典。 |
備註
下列程式碼範例說明如何建立此介面的實例。
IXpsOMPartResources *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->CreatePartResources (&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->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 |