다음을 통해 공유


PathGradientBrush::GetCenterPoint(PointF*) 메서드(gdipluspath.h)

PathGradientBrush::GetCenterPoint 메서드는 이 경로 그라데이션 브러시의 중심점을 가져옵니다.

통사론

Status GetCenterPoint(
  PointF *point
);

매개 변수

point

중심점을 받는 PointF 개체에 대한 포인터입니다.

반환 값

유형:상태

메서드가 성공하면 상태 열거형의 요소인 Ok를 반환합니다.

메서드가 실패하면 상태 열거형의 다른 요소 중 하나를 반환합니다.

발언

기본적으로 PathGradientBrush 개체의 중심점은 브러시 경계 경로의 중심이지만 PathGradientBrush 개체의 SetCenterPoint 메서드를 호출하여 경로 내부 또는 외부의 모든 위치로 중심점을 설정할 수 있습니다.

예제

다음 예제에서는 PathGradientBrush::GetCenterPointPathGradientBrush::SetCenterColor포함하여 PathGradientBrush 클래스의 여러 메서드를 보여 줍니다. 이 코드는 PathGradientBrush 개체를 만든 다음 브러시의 가운데 색 및 경계 색을 설정합니다. 이 코드는 PathGradientBrush::GetCenterPoint 메서드를 호출하여 경로 그라데이션의 중심점을 확인한 다음 원점에서 해당 중심점으로 선을 그립니다.

VOID Example_GetCenterPoint(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a path that consists of a single ellipse.
   GraphicsPath path;
   path.AddEllipse(0, 0, 200, 100);

   // Use the path to construct a brush.
   PathGradientBrush pthGrBrush(&path);

   // Set the color at the center of the path to blue.
   pthGrBrush.SetCenterColor(Color(255, 0, 0, 255));

   // Set the color along the entire boundary of the path to aqua.
   Color colors[] = {Color(255, 0, 255, 255)};
   INT count = 1;
   pthGrBrush.SetSurroundColors(colors, &count);

   // Fill the ellipse with the path gradient brush.
   graphics.FillEllipse(&pthGrBrush, 0, 0, 200, 100);

   // Obtain information about the path gradient brush.
   PointF centerPoint;
   pthGrBrush.GetCenterPoint(&centerPoint);

   // Draw a line from the origin to the center of the ellipse.
   Pen pen(Color(255, 0, 255, 0));
   graphics.DrawLine(&pen, PointF(0, 0), centerPoint);  
}

요구 사항

요구
헤더 gdipluspath.h

참고 항목

브러시 및 채워진 도형

경로 그라데이션 만들기

색 그라데이션 도형 채우기

PathGradientBrush

PathGradientBrush::GetCenterColor

PathGradientBrush::SetCenterColor

PathGradientBrush::SetCenterPoint 메서드