Métodos ID2D1Factory::CreateStrokeStyle
Crea un ID2D1StrokeStyle que describe el límite inicial, el patrón dash y otras características de un trazo.
Lista de sobrecarga
Método | Descripción |
---|---|
CreateStrokeStyle(D2D1_STROKE_STYLE_PROPERTIES&, FLOAT*, UINT, ID2D1StrokeStyle**) | Crea un ID2D1StrokeStyle que describe el límite inicial, el patrón dash y otras características de un trazo. |
CreateStrokeStyle(D2D1_STROKE_STYLE_PROPERTIES*, FLOAT*, UINT, ID2D1StrokeStyle**) | Crea un ID2D1StrokeStyle que describe el límite inicial, el patrón dash y otras características de un trazo. |
Ejemplos
En el ejemplo siguiente se crea un trazo que usa un patrón de guion personalizado.
// Dash array for dashStyle D2D1_DASH_STYLE_CUSTOM
float dashes[] = {1.0f, 2.0f, 2.0f, 3.0f, 2.0f, 2.0f};
// Stroke Style with Dash Style -- Custom
if (SUCCEEDED(hr))
{
hr = m_pD2DFactory->CreateStrokeStyle(
D2D1::StrokeStyleProperties(
D2D1_CAP_STYLE_FLAT,
D2D1_CAP_STYLE_FLAT,
D2D1_CAP_STYLE_ROUND,
D2D1_LINE_JOIN_MITER,
10.0f,
D2D1_DASH_STYLE_CUSTOM,
0.0f),
dashes,
ARRAYSIZE(dashes),
&m_pStrokeStyleCustomOffsetZero
);
}
En el ejemplo siguiente se usa el estilo de trazo al dibujar una línea.
m_pRenderTarget->DrawLine(
D2D1::Point2F(0, 310),
D2D1::Point2F(200, 310),
m_pCornflowerBlueBrush,
10.0f,
m_pStrokeStyleCustomOffsetZero
);
Requisitos
Requisito | Value |
---|---|
Biblioteca |
|
Archivo DLL |
|