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 属性。

适用于