Stroke.DrawingAttributesReplaced Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.