다음을 통해 공유


InkOverlayPaintingEventArgs.Graphics 속성

업데이트: 2007년 11월

항목을 그리는 데 사용되는 Graphics 개체를 가져옵니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink(Microsoft.Ink.dll)

구문

‘선언
Public ReadOnly Property Graphics As Graphics
‘사용 방법
Dim instance As InkOverlayPaintingEventArgs
Dim value As Graphics

value = instance.Graphics
public Graphics Graphics { get; }
public:
property Graphics^ Graphics {
    Graphics^ get ();
}
/** @property */
public Graphics get_Graphics()
public function get Graphics () : Graphics

속성 값

형식: System.Drawing.Graphics
항목을 그리는 데 사용되는 개체입니다.

예제

이 C# 예제에서는 Painting 이벤트인 theInkOverlay_Painting에 대한 이벤트 처리기를 만듭니다. 이벤트 처리기는 InkOverlay를 배치할 사각형을 노란색으로 채웁니다.

private void theInkOverlay_Painting(object sender, InkOverlayPaintingEventArgs e)
{
    e.Graphics.FillRectangle(new SolidBrush(Color.Yellow), e.ClipRectangle);
}

이 Microsoft® Visual Basic® .NET 예제에서는 Painting 이벤트인 theInkOverlay_Painting의 이벤트 처리기를 만듭니다. 이벤트 처리기는 InkOverlay를 배치할 사각형을 노란색으로 채웁니다.

Private Sub theInkOverlay_Painting(ByVal sender As Object, ByVal e As Microsoft.Ink.InkOverlayPaintingEventArgs) _
Handles theInkOverlay.Painting
    e.Graphics.FillRectangle(New SolidBrush(Color.Yellow), e.ClipRectangle)
End Sub

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

InkOverlayPaintingEventArgs 클래스

InkOverlayPaintingEventArgs 멤버

Microsoft.Ink 네임스페이스

InkOverlay

InkOverlay.Painting