Stroke.DrawingAttributesReplaced Event

Definition

Occurs when the drawing attributes of a Stroke object are replaced.

public:
 event System::Windows::Ink::DrawingAttributesReplacedEventHandler ^ DrawingAttributesReplaced;
public event System.Windows.Ink.DrawingAttributesReplacedEventHandler DrawingAttributesReplaced;
member this.DrawingAttributesReplaced : System.Windows.Ink.DrawingAttributesReplacedEventHandler 
Public Custom Event DrawingAttributesReplaced As DrawingAttributesReplacedEventHandler 
Public Event DrawingAttributesReplaced As DrawingAttributesReplacedEventHandler 

Event Type

Examples

The following example demonstrates how to add a handler for this event.

// Handle DrawingAttributesReplaced event on stroke
myNewStroke.DrawingAttributesReplaced += new DrawingAttributesReplacedEventHandler(myNewStroke_DrawingAttributesReplaced);
' Handle DrawingAttributesReplaced event on stroke
AddHandler myNewStroke.DrawingAttributesReplaced, AddressOf myNewStroke_DrawingAttributesReplaced

Applies to

See also