iXpsOMFontResource 接口 (xpsobjectmodel.h)
提供字体资源的 IStream 接口。
继承
IXpsOMFontResource 接口继承自 IXpsOMResource。 IXpsOMFontResource 还具有以下类型的成员:
方法
IXpsOMFontResource 接口包含以下方法。
IXpsOMFontResource::GetEmbeddingOption 获取将在序列化资源时应用的嵌入选项。 |
IXpsOMFontResource::GetStream 获取与此资源关联的流的新只读副本。 (IXpsOMFontResource.GetStream) |
IXpsOMFontResource::SetContent 设置要与此资源关联的只读流。 (IXpsOMFontResource.SetContent) |
注解
下面的代码示例演示了如何创建此接口的实例。
IXpsOMFontResource *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))
{
// The partUriString and acquiredStream variables
// are defined outside of this example.
hr = xpsFactory->CreatePartUri(partUriString, &partUri);
if (SUCCEEDED(hr))
{
hr = xpsFactory->CreateFontResource (
acquiredStream,
XPS_FONT_EMBEDDING_NORMAL, // normal
partUri,
FALSE, // not obfuscated
&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 |