IXpsOMVisualBrush 介面 (xpsobjectmodel.h)
使用可視化專案做為來源的筆刷。
繼承
IXpsOMVisualBrush 介面繼承自 IXpsOMTileBrush。 IXpsOMVisualBrush 也有下列類型的成員:
方法
IXpsOMVisualBrush 介面具有這些方法。
IXpsOMVisualBrush::Clone 製作介面的深層複本。 (IXpsOMVisualBrush.Clone) |
IXpsOMVisualBrush::GetVisual 取得解析視覺效果介面的指標,該介面要做為筆刷的來源。 |
IXpsOMVisualBrush::GetVisualLocal 取得本機、未共用視覺效果之介面的指標,用來做為筆刷的來源。 |
IXpsOMVisualBrush::GetVisualLookup 取得資源字典中視覺效果的查閱索引鍵名稱;視覺效果是用來做為筆刷的來源。 |
IXpsOMVisualBrush::SetVisualLocal 設定本機、未共用視覺效果的介面指標,以做為筆刷的來源。 |
IXpsOMVisualBrush::SetVisualLookup 設定儲存在資源字典中的共用視覺效果查閱索引鍵名稱,做為筆刷的來源。 |
備註
下列程式代碼範例說明如何建立這個介面的實例。
IXpsOMVisualBrush *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->CreateVisualBrush (
&viewBox,
&viewPort,
&newInterface);
if (SUCCEEDED(hr))
{
// assign visual using one of the following:
newInterface->SetVisualLocal (localVisual);
// or
newInterface->SetVisualLookup (visualLookupKey);
// use newInterface
newInterface->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
// use newInterface
newInterface->Release();
xpsFactory->Release();
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 適用於 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 |