IXpsOMColorProfileResource インターフェイス (xpsobjectmodel.h)
カラー プロファイル リソースへの IStream インターフェイスを提供します。
継承
IXpsOMColorProfileResource インターフェイスは、IXpsOMResource から継承されます。 IXpsOMColorProfileResource には、次の種類のメンバーもあります。
メソッド
IXpsOMColorProfileResource インターフェイスには、これらのメソッドがあります。
IXpsOMColorProfileResource::GetStream このリソースに関連付けられているストリームの新しい読み取り専用コピーを取得します。 (IXpsOMColorProfileResource.GetStream) |
IXpsOMColorProfileResource::SetContent このリソースに関連付ける読み取り専用ストリームを設定します。 (IXpsOMColorProfileResource.SetContent) |
注釈
次のコード例は、このインターフェイスのインスタンスを作成する方法を示しています。
IXpsOMColorProfileResource *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->CreateColorProfileResource (
acquiredStream,
partUri,
&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 |