Método Pen::GetAlignment (gdipluspen.h)
El método Pen::GetAlignment obtiene la alineación establecida actualmente para este objeto Pen .
Sintaxis
PenAlignment GetAlignment();
Valor devuelto
Tipo: PenAlignment
Este método devuelve un elemento de la enumeración PenAlignment que indica la configuración de alineación actual para este objeto Pen .
Comentarios
El valor predeterminado de PenAlignment es PenAlignmentCenter.
Ejemplos
En el ejemplo siguiente se crea un objeto Pen , se establece la alineación, se dibuja una línea y, a continuación, se obtiene la configuración de alineación del lápiz.
VOID Example_GetAlignment(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object and set its alignment.
Pen pen(Color(255, 0, 255, 0), 15);
pen.SetAlignment(PenAlignmentCenter);
// Draw a line.
graphics.DrawLine(&pen, 0, 0, 100, 50);
// Obtain information about the Pen object.
PenAlignment penAlignment;
penAlignment = pen.GetAlignment();
if(penAlignment == PenAlignmentCenter)
; // The pixels will be centered on the theoretical line.
else if(penAlignment == PenAlignmentInset)
; // The pixels will lie inside the filled area of the theoretical line.
}
Requisitos
Cliente mínimo compatible | Windows XP, Windows 2000 Professional [solo aplicaciones de escritorio] |
Servidor mínimo compatible | Windows 2000 Server [solo aplicaciones de escritorio] |
Plataforma de destino | Windows |
Encabezado | gdipluspen.h (include Gdiplus.h) |
Library | Gdiplus.lib |
Archivo DLL | Gdiplus.dll |