IXpsOMCanvas 介面 (xpsobjectmodel.h)
視覺專案和相關屬性的群組。
繼承
IXpsOMCanvas介面繼承自IXpsOMVisual。 IXpsOMCanvas 也有下列類型的成員:
方法
IXpsOMCanvas介面具有這些方法。
IXpsOMCanvas::Clone 製作介面的深層複本。 (IXpsOMCanvas.Clone) |
IXpsOMCanvas::GetAccessibilityLongDescription 取得物件內容的詳細 (詳細) 文字描述。 (IXpsOMCanvas.GetAccessibilityLongDescription) |
IXpsOMCanvas::GetAccessibilityShortDescription 取得物件的內容的簡短文字描述。 |
IXpsOMCanvas::GetDictionary 取得與畫布相關聯之字典之已解析之 IXpsOMDictionary 介面的指標。 |
IXpsOMCanvas::GetDictionaryLocal 取得本機未共用字典之 IXpsOMDictionary 介面的指標。 |
IXpsOMCanvas::GetDictionaryResource 取得遠端字典資源的 IXpsOMRemoteDictionaryResource 介面指標。 |
IXpsOMCanvas::GetUseAliasedEdgeMode 取得布林值,這個值會判斷畫布中物件的邊緣是否要使用別名邊緣模式來呈現。 |
IXpsOMCanvas::GetVisuals 取得 IXpsOMVisualCollection 介面的指標,其中包含畫布中視覺物件的集合。 |
IXpsOMCanvas::SetAccessibilityLongDescription 設定物件內容的長 (詳細) 文字描述。 (IXpsOMCanvas.SetAccessibilityLongDescription) |
IXpsOMCanvas::SetAccessibilityShortDescription 設定物件內容的簡短文字描述。 (IXpsOMCanvas.SetAccessibilityShortDescription) |
IXpsOMCanvas::SetDictionaryLocal 設定本機未共用字典的 IXpsOMDictionary 介面指標。 |
IXpsOMCanvas::SetDictionaryResource 設定遠端字典資源的 IXpsOMRemoteDictionaryResource 介面指標。 |
IXpsOMCanvas::SetUseAliasedEdgeMode 設定值,這個值會決定此畫布中物件的邊緣是否會使用別名邊緣模式來呈現。 |
備註
下列程式碼範例說明如何建立此介面的實例。
IXpsOMCanvas *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->CreateCanvas (&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
規格需求
最低支援的用戶端 | 適用于 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 |