PathGradientBrush::SetCenterColor 메서드(gdipluspath.h)
PathGradientBrush::SetCenterColor 메서드는 이 경로 그라데이션 브러시의 가운데 색을 설정합니다. 가운데 색은 브러시의 중심점에 표시되는 색입니다.
구문
Status SetCenterColor(
[in, ref] const Color & color
);
매개 변수
[in, ref] color
형식: const 색
가운데 색을 지정하는 Color 개체에 대한 참조입니다.
반환 값
형식: 상태
메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
기본적으로 중심점은 브러시 경계 경로의 중심이지만 가운데 지점을 경로 내부 또는 외부의 모든 위치로 설정할 수 있습니다.
예제
다음 예제에서는 줄임표를 기반으로 PathGradientBrush 개체를 만듭니다. 이 코드는 PathGradientBrush 개체의 PathGradientBrush::SetCenterColor 메서드를 호출하여 가운데 색을 파란색으로 설정합니다. PathGradientBrush::SetSurroundColors 메서드는 전체 경계를 따라 색을 aqua로 설정합니다. FillRectangle 메서드 메서드는 경로 그라데이션 브러시를 사용하여 타원을 포함하는 사각형을 그립니다.
VOID Example_SetCenter(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);
graphics.FillRectangle(&pthGrBrush, 0, 0, 300, 300);
}
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows XP, Windows 2000 Professional [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | gdipluspath.h(Gdiplus.h 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |
추가 정보
PathGradientBrush::GetCenterColor