다음을 통해 공유


Pen::GetAlignment 메서드(gdipluspen.h)

Pen::GetAlignment 메서드는 이 Pen 개체에 대해 현재 설정된 맞춤을 가져옵니다.

구문

PenAlignment GetAlignment();

반환 값

형식: PenAlignment

이 메서드는 이 Pen 개체의 현재 맞춤 설정을 나타내는 PenAlignment 열거형의 요소를 반환합니다.

설명

PenAlignment의 기본값은 PenAlignmentCenter입니다.

예제

다음 예제에서는 개체를 만들고, 맞춤을 설정하고, 선을 그린 다음, 펜 맞춤 설정을 가져옵니다.

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

요구 사항

   
지원되는 최소 클라이언트 Windows XP, Windows 2000 Professional [데스크톱 앱만 해당]
지원되는 최소 서버 Windows 2000 Server[데스크톱 앱만]
대상 플랫폼 Windows
헤더 gdipluspen.h(Gdiplus.h 포함)
라이브러리 Gdiplus.lib
DLL Gdiplus.dll

참고 항목

펜::SetAlignment

PenAlignment

펜, 선 및 사각형

펜 너비 및 맞춤 설정