DrawingAttributes 생성자 (Pen)
업데이트: 2007년 11월
지정된 Pen 개체의 색과 너비를 사용하여 DrawingAttributes 클래스의 새 인스턴스를 초기화합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink(Microsoft.Ink.dll)
구문
‘선언
Public Sub New ( _
pen As Pen _
)
‘사용 방법
Dim pen As Pen
Dim instance As New DrawingAttributes(pen)
public DrawingAttributes(
Pen pen
)
public:
DrawingAttributes(
Pen^ pen
)
public DrawingAttributes(
Pen pen
)
public function DrawingAttributes(
pen : Pen
)
매개 변수
- pen
형식: System.Drawing.Pen
DrawingAttributes 개체의 펜 색과 너비를 가져올 Pen 개체입니다.
설명
스트로크의 그리기 특성을 수정할 때는 DrawingAttributes 개체를 매번 새로 만드는 대신 기존 개체를 다시 사용하는 것이 좋습니다. 새 DrawingAttributes 개체를 만들면 Ink 개체와 함께 DrawingAttributes 개체의 수명보다 길게 유지되는 메모리가 할당됩니다.
예제
이 C# 예제에서는 Color 및 Width 속성을 thickRedPen이라는 펜의 해당 속성으로 설정하여 DrawingAttributes 클래스의 새 인스턴스인 theDrawingAttributes를 초기화합니다.
Pen thickRedPen = new Pen(Color.Red, 200);
DrawingAttributes theDrawingAttributes = new DrawingAttributes(thickRedPen);
이 Microsoft Visual Basic .NET 예제에서는 Width 및 Width 속성을 thickRedPen이라는 펜의 해당 속성으로 설정하여 DrawingAttributes 클래스의 새 인스턴스인 theDrawingAttributes를 초기화합니다.
Dim thickRedPen As New Pen(Color.Red, 200)
Dim theDrawingAttributes As New DrawingAttributes(thickRedPen)
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원