DrawingAttributeIds クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 |
内部 |
IsHighlighter |
IsHighlighter プロパティを識別します。 |
StylusHeight |
Height プロパティを識別します。 |
StylusTip |
StylusTip プロパティを識別します。 |
StylusTipTransform |
StylusTipTransform プロパティを識別します。 |
StylusWidth |
Width プロパティを識別します。 |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET