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、Windows Vista SP2 および Windows Vista 用プラットフォーム更新プログラム [デスクトップ アプリ |UWP アプリ] |
サポートされている最小のサーバー | Windows Server 2008 R2、Windows Server 2008 SP2 および Windows Server 2008 用プラットフォーム更新プログラム [デスクトップ アプリ |UWP アプリ] |
対象プラットフォーム | Windows |
ヘッダー | xpsobjectmodel.h |