共用方式為


IXpsOMSolidColorBrush 介面 (xpsobjectmodel.h)

單色筆刷。

繼承

IXpsOMSolidColorBrush 介面繼承自 IXpsOMBrushIXpsOMSolidColorBrush 也有下列類型的成員:

方法

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 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

另請參閱

IXpsOMBrush

IXpsOMObjectFactory::CreateSolidColorBrush

IXpsOMObjectFactory::CreateSolidColorBrush

介面

XML Paper Specification