DrawingAttributeIds 클래스

정의

DrawingAttributes 클래스에서 속성을 식별하는 GUID의 집합을 포함합니다.

public ref class DrawingAttributeIds abstract sealed
public static class DrawingAttributeIds
type DrawingAttributeIds = class
Public Class DrawingAttributeIds
상속
DrawingAttributeIds

예제

다음 예제에서는 사용 하는 방법에 설명 합니다 DrawingAttributeIds 내에서 변경 된 속성을 검색 하는 클래스는 PropertyDataChanged 이벤트입니다.

void inkDA_AttributeChanged(object sender, PropertyDataChangedEventArgs e)
{
    if (e.PropertyGuid == DrawingAttributeIds.Color)
    {
        this.Title = "The pen color is: " + e.NewValue.ToString();
    }
}
Private Sub inkDA_AttributeChanged(ByVal sender As Object, _
                                  ByVal e As PropertyDataChangedEventArgs)

    If (e.PropertyGuid = DrawingAttributeIds.Color) Then
        Me.Title = "The pen color is: " + e.NewValue.ToString()
    End If

End Sub

필드

Color

Color 속성을 식별합니다.

DrawingFlags

내부 DrawingFlags 속성을 식별합니다.

IsHighlighter

IsHighlighter 속성을 식별합니다.

StylusHeight

Height 속성을 식별합니다.

StylusTip

StylusTip 속성을 식별합니다.

StylusTipTransform

StylusTipTransform 속성을 식별합니다.

StylusWidth

Width 속성을 식별합니다.

적용 대상