Stroke.DrawingAttributesChanged イベント

定義

DrawingAttributes オブジェクトに関連付けられている Stroke が変更されたときに発生します。

public:
 event System::Windows::Ink::PropertyDataChangedEventHandler ^ DrawingAttributesChanged;
public event System.Windows.Ink.PropertyDataChangedEventHandler DrawingAttributesChanged;
member this.DrawingAttributesChanged : System.Windows.Ink.PropertyDataChangedEventHandler 
Public Custom Event DrawingAttributesChanged As PropertyDataChangedEventHandler 
Public Event DrawingAttributesChanged As PropertyDataChangedEventHandler 

イベントの種類

次の例では、このイベントのハンドラーを追加する方法を示します。

// Handle DrawingAtributesChanged event on stroke
myNewStroke.DrawingAttributesChanged += new PropertyDataChangedEventHandler(myNewStroke_DrawingAttributesChanged);
' Handle DrawingAtributesChanged event on stroke
AddHandler myNewStroke.DrawingAttributesChanged, AddressOf myNewStroke_DrawingAttributesChanged

注釈

には PropertyDataChangedEventArgs 、変更された プロパティに関する情報が含まれます。 プロパティを の PropertyGuid メンバー DrawingAttributeIds と比較して、変更された値を確認できます。

適用対象

こちらもご覧ください