Udostępnij za pośrednictwem


DrawingAttributeIds Klasa

Definicja

Zawiera zestaw identyfikatorów GUID identyfikujących właściwości w DrawingAttributes klasie.

public ref class DrawingAttributeIds abstract sealed
public static class DrawingAttributeIds
type DrawingAttributeIds = class
Public Class DrawingAttributeIds
Dziedziczenie
DrawingAttributeIds

Przykłady

W poniższym przykładzie pokazano, jak za pomocą DrawingAttributeIds klasy wykryć właściwość, która uległa zmianie w zdarzeniu 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

Pola

Color

Identyfikuje Color właściwość .

DrawingFlags

Identyfikuje właściwość wewnętrzną DrawingFlags .

IsHighlighter

Identyfikuje IsHighlighter właściwość .

StylusHeight

Identyfikuje Height właściwość .

StylusTip

Identyfikuje StylusTip właściwość .

StylusTipTransform

Identyfikuje StylusTipTransform właściwość .

StylusWidth

Identyfikuje Width właściwość .

Dotyczy