Graphics::TranslateClip(REAL,REAL) 메서드(gdiplusgraphics.h)
Graphics::TranslateClip 메서드는 이 Graphics 개체의 클리핑 영역을 변환합니다.
구문
Status TranslateClip(
REAL dx,
REAL dy
);
매개 변수
dx
번역의 가로 구성 요소를 지정하는 실수입니다.
dy
번역의 세로 구성 요소를 지정하는 실수입니다.
반환 값
메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
예제
다음 예제에서는 문자열의 크기를 측정한 다음 해당 크기를 나타내는 사각형을 그립니다.
VOID Example_TranslateClipReal(HDC hdc)
{
Graphics graphics(hdc);
// Set the clipping region.
graphics.SetClip(RectF(0.0f, 0.0f, 100.0f, 50.0f));
// Translate the clipping region.
graphics.TranslateClip(40.0f, 30.0f);
// Fill an ellipse that is clipped by the translated clipping region.
SolidBrush brush(Color(255, 255, 0, 0));
graphics.FillEllipse(&brush, 20, 40, 100, 80);
// Draw the outline of the clipping region (rectangle).
Pen pen(Color(255, 0, 0, 0), 2.0f);
graphics.DrawRectangle(&pen, 40, 30, 100, 50);
}
요구 사항
요구 사항 | 값 |
---|---|
헤더 | gdiplusgraphics.h |