IXpsOMPartResources 接口 (xpsobjectmodel.h)
提供对 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 7、带 SP2 的 Windows Vista 和适用于 Windows Vista 的平台更新 [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2008 R2、Windows Server 2008 SP2 和适用于 Windows Server 2008 的平台更新 [桌面应用 |UWP 应用] |
目标平台 | Windows |
标头 | xpsobjectmodel.h |