IXpsOMSolidColorBrush 接口 (xpsobjectmodel.h)
单色画笔。
继承
IXpsOMSolidColorBrush 接口继承自 IXpsOMBrush。 IXpsOMSolidColorBrush 也具有以下类型的成员:
方法
IXpsOMSolidColorBrush 接口具有这些方法。
IXpsOMSolidColorBrush::Clone 创建接口的深层副本。 (IXpsOMSolidColorBrush.Clone) |
IXpsOMSolidColorBrush::GetColor 获取画笔的颜色值和颜色配置文件。 |
IXpsOMSolidColorBrush::SetColor 设置画笔的颜色值和颜色配置文件。 |
注解
下面的代码示例演示了如何创建此接口的实例。
IXpsOMSolidColorBrush *newInterface;
// The following values are defined outside of
// this example.
// XPS_COLOR color;
// IXpsOMColorProfileResource *colorProfile;
// 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->CreateSolidColorBrush (
&color,
colorProfile,
&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->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 |
另请参阅
IXpsOMObjectFactory::CreateSolidColorBrush